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
You can try this
your_ddl_id.Items.Insert(0,new ListItem("Select","");