如题,有这样一个TextBox,有个变量 @co.ID ,怎么将这个变量的值赋给TextBox?下面这种写法不对,但不知道该怎么写?大神求赐教!!
@Html.TextBoxFor(s => s.comment_topic_id, new { @style = "display:none;", @value = @co.ID })
@Html.TextBoxFor(s => s.comment_topic_id, new { @style = "display:none;", Value = System.DateTime.Now})
感谢,楼上@ happydaily 的回答是正确的,问题解决了!!!!
@Html.TextAreaFor(model => model.tConent, new { @readonly = "readonly", Value = "文本内容"}),这样写为什么不行?
你@readonly="true"就行了