24

如何在 asp.net mvc 中创建多行文本框?

可能不是特定于 asp.net mvc,但它是我正在使用的。

这就是我所拥有的。

<%: Html.TextBox("CommentToAdd", null, new
{
@class = "input-medium",    
TextMode = "MultiLine",
Columns = "55",
Rows = "10",
type = "text",
required = "required"
})%>
4

4 回答 4

41

只需将此属性添加到属性。

  [DataType(DataType.MultilineText)]
   public string CommentsToAdd{ get; set; }
于 2014-08-18T05:58:26.070 回答
30

您想使用文本区域,而不是文本框。使用TextAreaFor将其绑定到您的模型,否则使用TextArea

<%= Html.TextAreaFor(e => e.CommentsToAdd, 10, 55, null) %>
<%= Html.TextArea("CommentsToAdd", string.Empty, 10, 55, null) %>

使用剃须刀:

@Html.TextAreaFor(e => e.CommentsToAdd, 10, 55, null)
@Html.TextArea("CommentsToAdd", string.Empty, 10, 55, null) 

这将呈现为<textarea>(多行)而不是<input type="text" />(单行)。

于 2013-04-16T00:43:32.947 回答
8

我认为textboxMVC 中的多行是textarea

<%= Html.TextArea("Body", null, new { cols = "55", rows = "10" }) %>

或者

<%= Html.TextAreaFor(x => x.Body, 10, 55, null) %>
于 2013-04-16T00:40:39.667 回答
4

多行文本框只是一个文本区域。

这些中的任何一个都应该工作。

<%= Html.TextArea("Body", null, new { cols = "100", rows = "5" }) %>

<%= Html.TextArea("Body", null, 5, 100, null) %>

<%= Html.TextAreaFor(x => x.Body, 5, 100, null) %>
于 2013-04-16T00:40:35.307 回答