我有一个mvc应用程序,我想让texbox可读,我使用了以下语法,它不能正常工作。请告诉我哪里出错了
<%= Html.TextBox("upperlimit", String.Format("{0:F}", Model.upperlimit, new { @readonly = (Model.upperlimit != null ? "readonly" : "false") }))%>
<%= Html.ValidationMessage("upperlimit", "*") %>
提前致谢 里兹
答案 0 :(得分:1)
试试这个:
<%= Html.TextBox(
"upperlimit",
String.Format("{0:F}", Model.upperlimit),
new {
@readonly = Model.upperlimit != null ? "readonly" : "false"
})
%>