将行添加到@html.Textarea

时间:2014-04-28 19:09:00

标签: c# asp.net-mvc

如何向此助手添加行:

 @Html.TextAreaFor(x => Model.xxx[i].xxx,  htmlAttributes:  new { @class = "form-control" })

似乎默认为2行,我想添加它。

1 个答案:

答案 0 :(得分:5)

使用rows属性

new { @class = "form-control", rows = "10" } 

使用您想要的行数更改10