1. 程式人生 > >Html.EditorFor多行文本顯示

Html.EditorFor多行文本顯示

orf htm mod style fff 字段 ttr for spa

CodeFirst在Model中設置字段:

[DataType(DataType.MultilineText)]

[StringLength(300, ErrorMessage = "錄入的字符數超過了300")]

再在前端頁面的世style中設置高度寬度

@Html.EditorFor(model => model.Result, new { htmlAttributes = new { @style = "width:330px;height:100px;" } })

Html.EditorFor多行文本顯示