MVC Razor for loop

后端 未结 6 860
野趣味
野趣味 2021-02-13 10:29

I have this code (nested inside a form post) but am continually getting the error that it\'s missing the closing }

@for(int i=0;i< itemsCount         


        
6条回答
  •  迷失自我
    2021-02-13 11:04

    try:

    @for (int i = 0; i < itemsCount; i++) {
        
        
    }
    

    Note the changes / notes in prashanth's another as well.

提交回复
热议问题