首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

Html.TextBoxFor赋html属性的有关问题

2013-11-03 
Html.TextBoxFor赋html属性的问题本人刚学mvc,遇到这个问题,比如我要给Html.TextBoxFor的html属性中width,

Html.TextBoxFor赋html属性的问题
本人刚学mvc,遇到这个问题,比如我要给Html.TextBoxFor的html属性中width,color赋值怎么赋,因为他们是在style中的
<%=Html.TextBoxFor(model => model.Admin, new Dictionary<string, object>() { { "size", 10 } })%>

用"style.color"和"style.width"不行吧,请问怎么赋值
[解决办法]
   @Html.TextBoxFor(m => m.AccountDate, new Dictionary<string, object>() { { "style", "width:200px;" }, { "readonly", "readonly" } })
             

热点排行