How do we check whether any item in the listbox is selected in ASP.NET 2.0?
Looks like you'll need to loop through them.
you can see whether any item is selected by the below code:
if (listboxname.SelectedIndex == -1)
MessageBox.Show("Please select an Item first!");