如何限制@ Html.TextArea中的字符数?

时间:2017-09-13 13:13:58

标签: html html-helper

拥有以下代码:

@Html.TextArea("userInput")

如何限制 userInput 中的字符数?

2 个答案:

答案 0 :(得分:0)

https://www.w3schools.com/tags/att_textarea_maxlength.asp

textarea具有“maxlength”属性,可以完全满足您的需求。如果这个文本是进入某个服务器或某些客户端JavaScript,我建议也要验证该代码中的长度。然而。最大长度属性足以显示。

答案 1 :(得分:0)

这应该有用。

@ Html.TextArea(“userInput”,new {maxlength = 50})