怎样指定 @Html.TextAreaFor的渲染样式
在.NET mvc3 中,我用@Html.TextAreaFor设置一个值,然后我怎样指定这个Area的在CSS中的样式的“class” ,哪个文档中有,System.Web.Mvc.Html渲染这方面的内容,刚接触.NET,谢谢大家帮忙。 NET? .NET CSS MVC
[解决办法]
@Html.TextAreaFor(x => x.Phone, new { @class = "yourcss"} )
new 里面是你自定义attribute的key和value
[解决办法]
入门请看Pro Asp .net MVC3 Framework
[解决办法]
@Html.TextAreaFor(
这个时候智能提示就会出现了~
你可以按↑ 按↓ 看看
大概如此了
@Html.TextAreaFor(model=>model.xxx,new{@class=""})