我用@Html.TextAreaFor(model => model.Remark, new { rows = 4 })输入了250个字符的文本。
可以显示详情时,长文本不换行,如何同@Html.TextAreaFor一样显示,但不能编缉。不知采用什么htmlHelper.
好像@Html.DisplayFor也不行。是否可把@Html.TextAreaFor进行属性设置,使其不能编缉?
请高手指导,谢谢!
不换行?.......使其不能编缉? 什么意思?我也期待这个答案
可以的。你看一下這個代碼生成的html是什麽?
在html.textareafor這個方法中有,重載方法,可以自定義html的顯示屬性的。用
new{readonly=true}
new{readonly=true}在编译时无法通过?
@静由心生:
@Html.TextArea("test", new {cols="2" , rows="2", disabled = "disabled" })
長度是2,不能編輯。