即使没有选择索引,DropDownList上的DataBind也会抛出异常

时间:2013-02-18 21:38:03

标签: c# asp.net exception

所以我收到了这个错误

{"'drpButton1' has a SelectedValue which is invalid because it does not exist in the list of items.\r\nParameter name: value"}

从我能读到的所有内容中,这是因为DropDownList要么具有现有项目,要么具有选定的索引或值,而不是新的数据绑定项目。

但问题是,我可以保证对象中没有现有项目,我也可以放心地说,没有选择可能超出范围的索引。

这是DropDownList对象在.databind()调用之前直接看起来的样子。

DropDownlList object before the databind() call

这是直接在引发所有爆炸的databind()调用之后。 enter image description here

我的列表对象包含7个项目,特别是它包含数据绑定方法随机决定选择的项目。

但是这里是踢球者,我确实用完全相同的数据填充了8个下拉列表并且它在第一个下拉列表中运行正常。不知道为什么第二个爆炸了。

编辑:这是执行绑定的代码:

这是load方法的一个片段。第一个调用成功,第二个调用失败,但它不会一直失败。

       private void LoadShortCodeDropDownData()
        {
            // Initilization junk to get the resultList to use.

   base.LoadListDropDown(drpButton0, (IList)resultList, "DeviceShortCodeIndexID", "DeviceShortCodeName", select);
                MessageTextEnabled(drpButton0);

                base.LoadListDropDown(drpButton1, (IList)resultList, "DeviceShortCodeIndexID", "DeviceShortCodeName", select);
                MessageTextEnabled(drpButton1);
}

    protected void LoadListDropDown(DropDownList dropDown, IList list, string valueField, string textField, string insertItem)
    {
        LoadListDropDown(dropDown, list, valueField, textField);
        //dropDown.Items.Insert(0, new ListItem(insertItem, ""));
    }

protected void LoadListDropDown(DropDownList dropDown, IList list, string valueField, string textField)
        {
            dropDown.DataSource = list;
            dropDown.DataValueField = valueField;
            dropDown.DataTextField = textField;
            dropDown.DataBind();
        }

EDIT2:我认为我在这里的真正问题是数据绑定选择哪个项目选择?我注意到第一个获取数据绑定的下拉列表会随机选择列表中的第一个值,而第二个下拉列表由于某种原因尝试绑定到列表中的最后一个值。

2 个答案:

答案 0 :(得分:0)

我以前遇到过这种情况,我认为你不能将同一个列表绑定到多个下拉列表。

答案 1 :(得分:0)

这是在第一次加载页面时还是在回发后发生的?因为如果它是一个回发,你很可能只是默认情况下SelectedIndex == 0

我不能保证这会解决问题,但您可以尝试添加

dropDown.SelectedIndex = -1; 

...到第二个LoadListDropDown重载的顶部。