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
try
@Html.TextAreaFor(model => model.Descricao, 5, 50, null)
in View Page