This is probably a simple thing, but ive got the following code:
@using (Html.BeginForm()) { ...
...
In my case I was missing a closing div which caused a similar error.
Error Code:
@using (Html.BeginForm()) { @* = Server side comment out. .... *@ } Resolved: @using (Html.BeginForm()) { @* = Server side comment out. .... *@ } 0 讨论(0) 查看其它3个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复
@* = Server side comment out. .... *@
Resolved:
@using (Html.BeginForm()) { @* = Server side comment out. .... *@ }