下面的两行代码工作正常,但我想将它们结合起来。我的意思是:我想在第一行代码中使用@class。我怎样才能做到这一点?
<%: Html.TextBoxFor(model => model.Product.Price, String.Format("{0:f}", Model.Product.Price))%>
<%: Html.TextBoxFor(model => model.Product.Name, new { @class = "textBox150" })%>
谢谢,
菲利普