我需要更改文本框的大小:
@Html.SimpleTextBoxFor(m => ((ModifiableProperty<string>)m).Value.TheCurrentValue,new { id = fieldId})
我试过了
@Html.SimpleTextBoxFor(m => ((ModifiableProperty<string>)m).Value.TheCurrentValue,new { id = fieldId,@maxlength = "100" })
但不行。
你也可以试试这个:
@Html.SimpleTextBoxFor(m => ((ModifiableProperty<string>)m).Value.TheCurrentValue,style ="width:200px"})
只需更改所需尺寸的200px值即可。
对于maxlength,我使用与您相同的语法,它正在为我工作。
@Html.TextBoxFor(model => model.EL_Taille_Initiale,new { style = "width:50px",@maxlength = "5" })
原文链接:https://www.f2er.com/aspnet/253310.html