Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

up vote 1 down vote accepted

Did you assign which field value will be returned when the DropDown's SelectedItem is changed? You should assign the field name to make sure the assigned field value returned when you select an item in your DropDown box. Try something like this-

cmbList.DataSource = Your Table or DataSet;
cmbList.DataMember = "ColumnName to be displayed in the DropDownList";
cmbList.DataTextField = "ColumnName to be displayed in the DropDownList";
cmbList.DataValueField = "ColumnName to be returned as SelectedValue in the DropDownList";
cmbList.DataBind();

Then use DropDownList.SelectedValue to get your desired field value as the DropDown's selection result. Hope this helps.

share|improve this answer
Brilliant. I've changed my data source to include the ID field and my markup to include DataValueField. – Harreh May 28 '12 at 9:13

dropdowlist.SelectedValue will give you the item selected in the dropdowlist. dropdowlist.SelectedItem.Text will give you the text of the item selected in the dropdowlist.

protected void dropdowlist_SelectedIndexChanged(object sender, EventArgs e)
{
    int ID = dropdowlist.SelectedValue;
    ---PUT YOUR SELECT CODE HERE----
}

Do remember to set dropdowlist Autopostback property to true in your .aspx page.

<asp:DropDownList ID="dropdowlist" runat="server" AutoPostBack="True" ></asp:DropDownList>
share|improve this answer
@Harreh just remember to set the selected value of the DropDownList Item with the unique row ID of the data when you bind the data. – MrGTgo May 28 '12 at 8:59
The SelectedValue property just returns the text that is used in the drop down. This isn't really surprising to me because the way it's connected to the data source. – Harreh May 28 '12 at 9:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.