在mvc中@Html.TextBox("txtCode","",new {@class="code",style="width:101px;;height:28px;background-color:#fff"})等于 Read More
在传统webForm中,输入框的这样的: 而在mvc中,可以写成这样@Html.TextBoxFor(m => m.userName)以上两句是一样的,那么如何在mvc中的@Html.TextBoxFor(m => m.userName)输入框添加css样式呢?@Html.TextBoxFor(m ... Read More