我试图设置htmlAttribute属性,但我无法弄清楚正确的语法
这是它在c#中的工作原理
<%=Html.Password("myPassword", 50,"",new { style = "width:100px" })%>
什么是vb.net版本的
new { style = "width:100px" }
?
VB中内联匿名类型的正确语法是:
New With { .Style = "width:100px" }
如果要声明匿名类型,请使用以下语法:
Dim myVariable = New With { .Style = "width:100px" }