Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I set an item in a DropDownList as the default value in ASP.NET?

SomeDropDownList.DataSource =GetSomeStrings();
share|improve this question

3 Answers

up vote 0 down vote accepted

There are two ways to do it:

  1. Set the SelectedValue to the value you want as the default DropDownList.SelectedValue = "value". This is very simple but will result in an error if the dropdown already has a SelectedValue

  2. Set the actual item DropDOwnList.Items.FindByValue("value").Selected = true; which should not result in an error in case there already is a selected item.

share|improve this answer

Set the SelectedValue property

share|improve this answer

You can bind the DropDownList to the data source, and then set the SelectedValue:

someDropDownList.DataSource = GetSomeStrings();
someDropDownList.DataBind();
someDropDownList.SelectedValue = "default value";

You could also select the default item by index, using the SelectedIndex property:

someDropDownList.SelectedIndex = 0;
share|improve this answer

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.