Вы пробовали Html.DropDownListFor( new {width:"100"})
или Html.DropDownListFor( new {@class:"longDropdownList"})
EDIT
<style>
.MakeWide { width: 200px; }
</style>
<%= Html.DropDownListFor(x => x.Name, new SelectList(new List<string>()), new { @class = "MakeWide" })%>