在ASP.NET MVC Razor中,TextAreaFor框大小没有增加

时间:2017-09-05 19:57:52

标签: html asp.net-mvc razor

我正在尝试增加Razor中的文本框列大小,但它无效。

这是我的剃刀代码:

@Html.TextAreaFor(model => model.JobDescription, 
                  htmlAttributes: new { @class = "form-control", @rows = 2, @cols = 30 })

以下是我的网页截图:

enter image description here

但我需要这样的事情:

enter image description here

我没有这样做,有人可以帮我这样做吗?

1 个答案:

答案 0 :(得分:0)

你不需要@每个html attr @在这里用class来逃避c#class try

 @Html.TextAreaFor(model => model.JobDescription, htmlAttributes: new { @class = "form-control",rows = "2",cols = "30" })