名称:
<%= Html.TextBox("txtName", "20", new { @class = "hello" }) %>
我想在VB.NET中使用它,是.cssclass =“你好”还是别的?
答案 0 :(得分:4)
这有效:
<%=Html.TextBox("TextName", "TextBox value", New With {.class = "theClass"})%>
答案 1 :(得分:1)
您需要使用“With”关键字和一个点,如下所示: