我有问题,我无法理解。
int i = Convert.ToInt32(Model.dt);
MvcHtmlString s = Html.Hidden("DishType", Convert.ToInt32(Model.dt));
MvcHtmlString ss = Html.Hidden("DishType", 4);
i = 4
s =输入id =“DishType”name =“DishType”type =“hidden”value =“22”
ss = input id =“DishType”name =“DishType”type =“hidden”value =“22”
为什么值为22,如果在两种情况下参数都是4 ???
答案 0 :(得分:0)
这是因为你传入了错误的位置
您需要使用的是:
<%= Html.Hidden(“name”,null,new {Value =“your attributes here”})%>