How do I create a multi line text box in asp.net mvc?

asp.net-mvc, html

Solution

just add this attribute to property.

  [DataType(DataType.MultilineText)]
   public string CommentsToAdd{ get; set; }

Problem

How do I create a multi line text box in asp.net mvc? Probably not specific to asp.net mvc but it is what I am using. Here is what I have. ``` <%: Html.TextBox("CommentToAdd", null, new { @class = "input-medium", TextMode = "MultiLine", Columns = "55", Rows = "10", type = "text", required = "required" })%> ```

Original source