The two lines of code below work fine, but I want to combine them. What I mean is: I want to use the @class in the first code line. How can I do that?
<%: Html.TextBoxFor(model => model.Product.Price, String.Format("{0:f}", Model.Product.Price))%>
<%: Html.TextBoxFor(model => model.Product.Name, new { @class = "textBox150" })%>
thanks,
Filip