标签: c# asp.net-mvc
如何向此助手添加行:
@Html.TextAreaFor(x => Model.xxx[i].xxx, htmlAttributes: new { @class = "form-control" })
似乎默认为2行,我想添加它。
答案 0 :(得分:5)
使用rows属性
rows
new { @class = "form-control", rows = "10" }
使用您想要的行数更改10
10