将密码框更改为已禁用

时间:2014-05-04 09:59:48

标签: asp.net .net asp.net-mvc asp.net-mvc-4 razor

如何将密码框更改为禁用。

@Html.Editor("password")

类似

Html.TextBoxFor(model => model.User, new {disabled = "disabled"})

2 个答案:

答案 0 :(得分:0)

你关闭了。您必须使用@

为您的属性添加前缀
Html.TextBoxFor(model => model.User, new { @disabled = "disabled" })

答案 1 :(得分:0)

您可以使用Html属性

只读取文本框
  

@ Html.TextBoxFor(model => model.User,new {@readonly =" readonly",   style =" width:80%;" })