1) while editing a view with the row:
@Html.TextArea(name: "Message", rows: 10, columns: 40)
I'm getting this error at compile time:
ERR: "The best overload for 'TextArea' does not have a parameter of type 'rows'"
even if there's a signature with rows and columns as parameters.
2) So I try with the signature: @Html.TextArea(string name, object htmlAttributes)
invoking the function as follows
@Html.TextArea(name: "Message", new { rows=10, columns=40 }
but I'm getting another error:
ERR: "Named Argument Specifications must appear after all fixed arguments have been specified"
Anyone knows why and how to solve them?
Thank you in advance!