@Html.textbox里面不能使用@ViewBag吗?

时间:2013-06-17 05:24:50

标签: asp.net-mvc-3 viewbag

我想将文本框的值设置为ViewBag项。为什么下面的代码不起作用?

@Html.TextBox("UName", @ViewBag.UName)

1 个答案:

答案 0 :(得分:2)

@Html.TextBox("UName", (string)ViewBag.UName)