1
我正在與Razor
和C#
一起在MVC 4
的web項目中工作。我已經使用@Html.DropDownList
動態顯示項目。在mvc4中動態生成@ html.dropdown控件的工具提示
我想爲@Html.DropDownList
的每一項設置ToolTip
。這是我的代碼:
@Html.DropDownList("Config_Industry", ViewBag.Industry as IEnumerable<SelectListItem>, "Please Choose Item", new
{
@class = "drpDownCustomEngineered",
@style = "width: 258px;"
})