I have small design question about
html.DropDownListFor()
How can I change width of html.DropDownListFor() ?? For example by css.
Have you tried Html.DropDownListFor( new {width:"100"})
Html.DropDownListFor( new {width:"100"})
or Html.DropDownListFor( new {@class:"longDropdownList"})
Html.DropDownListFor( new {@class:"longDropdownList"})
EDIT
<%= Html.DropDownListFor(x => x.Name, new SelectList(new List()), new { @class = "MakeWide" })%>