<td class="field-value">
@Html.TextBox("SSN", "", new { style = "width:100px" })
</td>
我会在哪里放置maxLength属性? maxLength是最好的选择吗?
答案 0 :(得分:0)
是的,maxLength将是这里的最佳选择。只需将其与其余属性一起添加:
@ Html.TextBox(“SSN”,“”,new {style =“width:100px”,maxLength = 9 })