有关使文本框可读的疑问?

时间:2009-11-20 11:31:24

标签: asp.net readable

我有一个mvc应用程序,我想让texbox可读,我使用了以下语法,它不能正常工作。请告诉我哪里出错了

<%= Html.TextBox("upperlimit", String.Format("{0:F}", Model.upperlimit, new { @readonly = (Model.upperlimit != null ? "readonly" : "false") }))%>
<%= Html.ValidationMessage("upperlimit", "*") %>

提前致谢 里兹

1 个答案:

答案 0 :(得分:1)

试试这个:

<%= Html.TextBox(
    "upperlimit", 
    String.Format("{0:F}", Model.upperlimit), 
    new { 
        @readonly = Model.upperlimit != null ? "readonly" : "false" 
    })
%>