如何将密码框更改为禁用。
@Html.Editor("password")
类似
Html.TextBoxFor(model => model.User, new {disabled = "disabled"})
答案 0 :(得分:0)
你关闭了。您必须使用@
:
Html.TextBoxFor(model => model.User, new { @disabled = "disabled" })
答案 1 :(得分:0)
您可以使用Html属性
只读取文本框@ Html.TextBoxFor(model => model.User,new {@readonly =" readonly", style =" width:80%;" })