I cannot set the width or cols in atextarea. Rows/Height works just fine. can someone please help thanks!
@using (Html.BeginForm()) { @Html.AntiForgeryToken(
You can add a class attribute:
@Html.TextAreaFor(model => model.Comments, new {cols=60, rows=10, @class="form-control" })