如何在 asp.net mvc 中创建多行文本框?
可能不是特定于 asp.net mvc,但它是我正在使用的。
这就是我所拥有的。
<%: Html.TextBox("CommentToAdd", null, new
{
@class = "input-medium",
TextMode = "MultiLine",
Columns = "55",
Rows = "10",
type = "text",
required = "required"
})%>
如何在 asp.net mvc 中创建多行文本框?
可能不是特定于 asp.net mvc,但它是我正在使用的。
这就是我所拥有的。
<%: Html.TextBox("CommentToAdd", null, new
{
@class = "input-medium",
TextMode = "MultiLine",
Columns = "55",
Rows = "10",
type = "text",
required = "required"
})%>
只需将此属性添加到属性。
[DataType(DataType.MultilineText)]
public string CommentsToAdd{ get; set; }
您想使用文本区域,而不是文本框。使用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" />
(单行)。
我认为textbox
MVC 中的多行是textarea
<%= Html.TextArea("Body", null, new { cols = "55", rows = "10" }) %>
或者
<%= Html.TextAreaFor(x => x.Body, 10, 55, null) %>
多行文本框只是一个文本区域。
这些中的任何一个都应该工作。
<%= Html.TextArea("Body", null, new { cols = "100", rows = "5" }) %>
<%= Html.TextArea("Body", null, 5, 100, null) %>
<%= Html.TextAreaFor(x => x.Body, 5, 100, null) %>