我想在mvc2
中的html.label帮助器中设置ID和Text属性<%:html.label<have to set ID and Text properties here>%>
Plz帮帮我..
答案 0 :(得分:12)
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" }
如果您想通过html帮助方法获取Id
,请尝试使用:
@Html.IdFor(model => model.Property)