我不确定为什么此语法会抱怨错误“未声明 Enter。由于保护级别可能无法访问”,并且必须输入“@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>
,它会抱怨这个 -->“使用必须以结束使用结束。”