This is HTML
<select size="25" style="width:100px" id="yearList"/>
This is Razor ( not sure if this is the correct term)
@Html.DropDownList("yearList", null, new{style="width:100px;"})
Does anyone know how to give the Razor version a size attribute similar to the HTML version?
Many thanks.
Like this:
@Html.DropDownList(
"yearList",
Enumerable.Empty<SelectListItem>(), // <!-- TODO: bind with a real data
new {
size = "25",
style = "width: 60px"
}
)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With