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

How to limit the number of characters in @Html.TextArea?

有这行代码:

@Html.TextArea("userInput")

如何限制userInput中的字符数?

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

textarea 有一个 "maxlength" 属性,它可以满足您的需求。如果此文本进入某处的服务器或某个客户端 JavaScript,我建议您也验证该代码中的长度。然而。最大长度属性足以显示。

这应该有效。

@Html.TextArea("userInput",新{最大长度=50})