0

我有 :

@Html.EditorFor(model => model.name)

这将显示我的用户名,但我想覆盖此名称。所以我尝试了这个:

@Html.EditorFor(model => model.Password, new { value = "othertext"} )

但这不起作用,我总是有我的用户名。

谢谢你的帮助 !

4

1 回答 1

2

EditorFor 上的“附加视图数据”参数设置您的编辑器模板使用的新视图数据。它不会像您在这里使用的那样渲染“额外的对象”。

据我了解,您尝试设置htmlAttributes

@Html.TextBoxFor(model => model.Password, new { value = "xxx" })
于 2012-10-05T08:52:18.097 回答