将@ Html.TextBoxFor设置为readonly。 MVC,Visual Basic

时间:2015-06-02 09:37:54

标签: asp.net-mvc vb.net

我有以下代码行:

@Html.TextBoxFor(Function(model) model.EmployeeName, New With {.htmlAttributes = New With {.class = "form-control"})

我从我的控制器传递了这个文本框的默认值,因此我想让这个字段显示为只读。

我尝试过使用:

@readonly = "readonly"

2 个答案:

答案 0 :(得分:-1)

试试这个

将其设为只读

@Html.TextBoxFor(m=> m.Total, new {@class ="form-control", @readonly="true"})

禁用

@Html.TextBoxFor(m=> m.Total, new {@class ="form-control", @disabled="true"})

答案 1 :(得分:-1)

试试这个:

@Html.TextBoxFor(m=> m.Total, new {@class ="form-control", @disabled="disabled"})