大家好,我如何在 MVC3 的 aspx 页面中设置 DropDown 的宽度或样式
i am using this statement
<%:Html.DropDownList("Projects")%>
大家好,我如何在 MVC3 的 aspx 页面中设置 DropDown 的宽度或样式
i am using this statement
<%:Html.DropDownList("Projects")%>
看这里。您可以将此语句用于内联样式
<%:Html.DropDownList("Projects", Model.ProjectsList, new { @class="myCssClass" })%>