ASP.NET razor Html.TextArea
ave you tried removing the name tag off of the name parameter?
@Html.TextArea("Message", new { rows = 10, cols = 40})
Also, the HTML attribute for the columns on a textarea
is cols
not columns
Just change the code to:
@Html.TextArea("Message", new { rows=10, columns=40 })
without the named parameter