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