问问题
14430 次
2 回答
52
[DataType(DataType.MultilineText)]
仅当您Html.EditorFor
在视图中使用 helper 时才有效:
样本:
模型
[DataType(DataType.MultilineText)]
public string Description { get; set; }
看法
Html.EditorFor(m => m.Description)
于 2013-10-12T15:17:09.237 回答
5
为什么不使用:
@Html.TextAreaFor(model => model.YourProperty)
EditorFor 助手是一种“智能”助手,它基于属性的底层类型进行渲染。如果您想强制它呈现特定的 html 输入类型,请使用其他助手。
于 2013-05-16T20:16:59.047 回答