asp.net-mvc-2 – Html.TextBoxFor格式和css类

前端之家收集整理的这篇文章主要介绍了asp.net-mvc-2 – Html.TextBoxFor格式和css类前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
下面的两行代码工作正常,但是我想结合它们。
我的意思是:我想在第一个代码行中使用@class。
我怎样才能做到这一点?
<%: Html.TextBoxFor(model => model.Product.Price,String.Format("{0:f}",Model.Product.Price))%>

<%: Html.TextBoxFor(model => model.Product.Name,new { @class = "textBox150" })%>

谢谢,

菲利普

解决方法

我知道我迟到了,但我刚刚找到了解决这个问题的办法:
<%: Html.TextBoxFor(model => model.StartDate,new { @class = "datepicker",Value=String.Format("{0:d}",Model.StartDate) })%>
原文链接:https://www.f2er.com/aspnet/253779.html

猜你在找的asp.Net相关文章