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.

I have an ASP.NET dropdown that I've filled via databinding. I have the text that matches the display text for the listitem I want to be selected. I obviously can't use SelectedText (getter only) and I don't know the index, so I can't use SelectedIndex. I currently am selecting the item by iterating through the entire list, as show below:

ASP:

<asp:DropDownList ID="ddItems" runat="server" /> 

Code:

ddItems.DataSource = myItemCollection;
ddItems.DataTextField = "Name";
ddItems.DataValueField = "Id";

foreach (ListItem item in ddItems.Items)
{
    if (item.Text == textToSelect)
    {
        item.Selected = true;
    }
}

Is there a way to do this without iterating through all the items?

share|improve this question
This might be a simple/stupid question, but I'm fairly new to ASP webforms. – Ed Schwehm Aug 27 '10 at 19:10
2  
definitely not simple or stupid. @kbrimington has the right answer for you. – Chase Florell Aug 27 '10 at 19:19

2 Answers

up vote 8 down vote accepted

You can try:

ddItems.Items.FindByText("Hello, World!").Selected = true;

Or:

ddItems.SelectedValue = ddItems.Items.FindByText("Hello, World!").Value;

Note that, if you are not certain that an items exists matching your display text, you may need to check the results of FindByText() for null.

Note that I use the first approach on a multiple-select list, such as a CheckBoxList to add an additional selection. I use the second approach to override all selections.

share|improve this answer
you beat me to it. I use the first option. – Chase Florell Aug 27 '10 at 19:12
the null reference check should be used on either of those options. You can't guarantee the text will be there. – KP. Aug 27 '10 at 19:13
@rock: Thanks for your response. I added a note explaining when I would choose one over the other. – kbrimington Aug 27 '10 at 19:14
@KP: Thanks. I had made mention of that already, but left it out for clarity. Besides, there exist cases where you can guarantee text exists and save a few lines of code. – kbrimington Aug 27 '10 at 19:15
Thanks! Quick answer and effective. – Ed Schwehm Aug 27 '10 at 19:27
show 1 more comment

Use the FindByText method of the ListItemCollection class, such as:

ListItem itemToSelect = ddlItems.Items.FindByText("some text to match");

if(itemToSelect != null)
{
    itemToSelect.Selected = true;
}
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.