我想在 mvc2 的 html.label 助手中设置 ID 和 Text 属性
<%:html.label<have to set ID and Text properties here>%>
请帮帮我..
我想在 mvc2 的 html.label 助手中设置 ID 和 Text 属性
<%:html.label<have to set ID and Text properties here>%>
请帮帮我..
Html.Label方法返回一个 HTML元素和由指定表达式表示的属性的属性名称。label
例如:
<%: Html.Label("Text Content", new { id = "labelId" })%>
@Html.Label("Text Content", new { id = "labelId" })
第二个参数是 htmlAttributes,因此,您可以添加任何您想要的 html 属性作为此匿名对象的属性。例如:
new { id = "id-element", name = "name-element", size = 10, @class = "css-class" }
如果你想Id
通过一个 html 辅助方法,尝试使用:
@Html.IdFor(model => model.Property)