Hi there, I've come across an annoying problem that's probably really easy to solve if you're not a newb like myself...
I've got a DropDownList in ASP.Net that has a ListItem that requires being disabled... but I DON'T mean Enable="False"
. And I also don't want to disable the entire DropDownList, just one specific ListItem. What I'm talking about is written in HTML as disabled="disabled"
, like so...
<option disabled="disabled" value="-1">Disabled Option</option>
Anyone know how to do this in ASP.Net?
Thanks a lot.