hey,
I want to get the value of the specifed index in a DropDownList
hey,
I want to get the value of the specifed index in a DropDownList
DropDownList ddl = YourDropDownList;
//this
ddl.SelectedItem;
//or this
ddl.SelectedValue;
//or this
ddl.Items[ddl.SelectedIndex];
Any of those what you're after??