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
VB Code:
Dim ListItem1 As New ListItem() ListItem1.Text = "put anything here" ListItem1.Value = "0" drpTag.DataBind() drpTag.Items.Insert(0, ListItem1)
View: