我不知道为什么,这句法错误抱怨“进入不宣。可能无法访问由于保护级别”,必须把“@html(”摆脱错误。
此块抱怨错误
@Using (Html.BeginForm("GetUser", "UserProfile", FormMethod.Post))
Enter User id :- @Html.TextBox("UserId",Model) -- This line must write in this way @Html("Enter User id :-")
<input type="submit" value="Submit data" /> --This line complain ">" expected"
End Using
如果以这种方式重写代码,在抱怨了,但在像下面的图像开始输出显示“System.Web.MVC.Html”
@Html.BeginForm("GetUser", "UserProfile", FormMethod.Post)
Enter User id :- @Html.TextBox("UserId",Model)
<input type="submit" value="Submit data" />
喜nemesv如果使用@<Text>
,它的抱怨这一点 - “使用必须结束而终止使用”>