I've got an SQL Database and I'm using ASP.net in C#.
I've got a drop-down box which has its selection of items databound to a table in the database. Basically, I need to get the ID of the selected record.
Not really sure what the best way to do this would be. I can only think of selecting the nth row by using the SelectedIndex property the drop-down box exposes.
ID is of type uniqueidentifier. Please note that an ID of incremental INT would not be of use because records may be deleted.