我有几种方法可以这样做,但无济于事:
<div class="editor-field">
@Html.DropDownListFor("ManufacturerId", String.Empty, new { style="width:500px" })
@Html.ValidationMessageFor(model => model.ManufacturerId)
</div>
感谢您的任何提示!
答案 0 :(得分:3)
@Html.DropDownList("ManufacturerId", Enumerable.Empty<SelectListItem>(),
new { @style = "width: 500px;" })
答案 1 :(得分:2)
你正在做的事情的一般要点应该有效,但看起来你的论点可能有点混乱。怎么样:
@Html.DropDownList("ManufacturerId", Enumerable.Empty<SelectListItem>(),
new{ style="width: 500px;"})