HTML.DropDownListFor类赋值

时间:2011-11-01 18:00:12

标签: asp.net class variable-assignment html.dropdownlistfor

是否可以将自己的类分配给HTML.DropDownListFor()助手?

3 个答案:

答案 0 :(得分:4)

其中一个重载方法有一个object htmlAttributes作为最后一个参数,您可以在其中指定要添加到生成的html中的额外属性:

Html.DropDownListFor(..., new { "class" = "myclassname" };

http://msdn.microsoft.com/library/ee703670.aspx

答案 1 :(得分:3)

Didier的答案大多是正确的,但要在htmlAttributes对象中定义类值,您需要使用以下语法:

Html.DropDownListFor(..., new { @class = "myclassname" } );

“@”是让编译器知道这不是关键字“class”。使用"class"将导致编译错误。

答案 2 :(得分:1)

您可以使用以下任何逻辑。

@Html.DropDownList("CourseId", new List<SelectListItem>(), new {@class="myclassname"} )

OR

@Html.DropDownList("CourseId", (IEnumerable<SelectListItem>)ViewBag.CourseId, new { @class="myclassname" })

OR

@Html.DropDownListFor(x => x.CourseId, (IEnumerable<SelectListItem>)ViewBag.CourseId, new { @class = "myclassname" })