0

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

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

在此先感谢丽兹

4

1 回答 1

1

试试这个:

<%= Html.TextBox(
    "upperlimit", 
    String.Format("{0:F}", Model.upperlimit), 
    new { 
        @readonly = Model.upperlimit != null ? "readonly" : "false" 
    })
%>
于 2009-11-20T11:37:47.990 回答