I\'m working on an MVC project using C#. Right now, I\'m trying to customize my views a little, and I\'d like to make the text boxes bigger.
I followed the suggesti
In MVC 5 you can use
@Html.TextAreaFor(model => model.body, 5, 50, new { @class = "form-control" } )
Works nicely!