I want to add a value to the drop down list that cannot be selected, like a title. Ex: I have a month drop down list. The very first item should be \"select month\" this sho
Say you have a drop down called ddlMonths:
ddlMonths
ddlMonths.Items.Insert(0,new ListItem("Select a month","-1");