我有如下
代码:
< div class =“editor-field”>
<%:Html.TextBoxFor(model => model.MyId)%>
<%:Html.ValidationMessageFor(model => model.MyId)%>
< / DIV>
模型的“MyId”属性类型为整数.
当表单处于“创建”模式时,MyId值为0.如何才能防止0显示,而是以空字符串/空白/无值呈现文本框?
我已经尝试过各种形式的String.Format没有成功.
也许您可以使用Text
Box()
方法,这允许您指定要
显示的值:
<%: Html.TextBox("MyId",model.MyId == 0 ? "" : model.MyId.ToString()) %>
原文链接:https://www.f2er.com/aspnet/246188.html