Below is my code and I set the values for columns and rows correctly or at least I thought I did but it won't change from the default size of the text area. What have I done wrong?
<div class="row">
@Html.LabelFor(model => model.fullName, "Name:")
@Html.TextAreaFor(model => model.fullName, new { @cols="160", @rows="1" })
@Html.ValidationMessageFor(model => model.fullName)
</div>
@for "cols" and "rows". You only need it when you are using a reserved word, such as@class