我正在尝试增加Razor中的文本框列大小,但它无效。
这是我的剃刀代码:
@Html.TextAreaFor(model => model.JobDescription,
htmlAttributes: new { @class = "form-control", @rows = 2, @cols = 30 })
以下是我的网页截图:
但我需要这样的事情:
我没有这样做,有人可以帮我这样做吗?
答案 0 :(得分:0)
你不需要@每个html attr @在这里用class来逃避c#class try
@Html.TextAreaFor(model => model.JobDescription, htmlAttributes: new { @class = "form-control",rows = "2",cols = "30" })