CodeFirst在Model中设置字段:
[DataType(DataType.MultilineText)]
[StringLength(300, ErrorMessage = "录入的字符数超过了300")]
再在前端页面的世style中设置高度宽度
@Html.EditorFor(model => model.Result, new { htmlAttributes = new { @style = "width:330px;height:100px;" } })
时间: 2024-10-02 10:10:27