草庐IT

TextAreaFor

全部标签

html - 如何使用 Razor 引擎在 View 中为 TextAreaFor 添加最大长度

我在使用Razor引擎实现的View中有一个TextArea()控件。@Html.TextArea("EventNature",new{style="width:200px;height:100px;"})如何设置此控件的Maxlength属性?RazorEngine中是否有任何内置属性,还是我必须使用脚本? 最佳答案 你可以这样做:@Html.TextArea("EventNature",new{maxlength=50,//orothervaluestyle="width:200px;height:100px;"})请注意这是一