Click here to Skip to main content
Click here to Skip to main content

ASP dropdownlist missing value error

By , 3 Apr 2013
 

'DropDownList' has a SelectedValue which is invalid because it does not exist in the list of items.

This error is caused when the value is not in currently in the list items.

A solution:

In your ASPX page:

<asp:DropDownList ID="yourdropdownlist" runat="server" DataSourceID="SqlDataSource1"
   DataTextField="textfield" DataValueField="valuefield" AppendDataBoundItems="true"
   SelectedIndex='<%# GetSelectedIndex("yourdropdownlist",Eval("somevalue").ToString()) %>'
   SelectedValue='<%# Bind("somevalue") %>'>
</asp:DropDownList>

We pass the id of dropdownlist and the bound value to GetSelectedIndex in code behind which inserts the item in the list if item is not found in the list to prevent the error. you could then add validation during updating or inserting events to prevent the value if not allowed or use mapping to transform the illegal value.

In the code behind:

public int GetSelectedIndex(string id, string value)
{
    DropDownList list = (DropDownList)FindControlRecursive(Page.Master, Convert.ToString(id));
    int index = list.Items.IndexOf(list.Items.FindByValue(value));
    if (index == -1)
    {
        
    // the value was not found so we add it 
    
     list.Items.Insert(0, new ListItem(value, value));
        return 0;
    }
    else
    {
        return index;
    }
}

Can't remember where I found this snippet but it finds a control recursively and returns the first one found:

public Control FindControlRecursive(Control Root, string Id)
{
    if (Root.ID == Id)
        return Root;
    foreach (Control Ctl in Root.Controls)
    {
        Control FoundCtl = FindControlRecursive(Ctl, Id);
        if (FoundCtl != null)
            return FoundCtl;
    }
    return null;
}

Note: When Using with Formview, use only in edit mode. In insert mode you don't need the selectedindex.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Cyrus Neah
United States United States
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionThe 'SelectedIndex' and 'SelectedValue' attributes are mutually exclusive.memberJohannQ3 Apr '13 - 12:28 
AnswerRe: The 'SelectedIndex' and 'SelectedValue' attributes are mutually exclusive.memberCyrus Neah3 Apr '13 - 13:46 
GeneralThis works great for changing a value in the database that i...membertimBaker19566 Oct '11 - 13:08 
GeneralRe: This works great for changing a value in the database that i...memberCyrus Neah16 May '13 - 17:11 
Generalglad it was of some use.memberCyrus Neah19 May '11 - 7:09 
GeneralGreat article, In my case, I had a datalist control, and the...membertasmisr19 May '11 - 6:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 3 Apr 2013
Article Copyright 2011 by Cyrus Neah
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid