0

所以我收到了这个错误

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

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

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

这是 DropDownList 对象在 .databind() 调用之前的样子。

在 databind() 调用之前的 DropDownlList 对象

在这里,它直接在导致所有爆炸的 databind() 调用之后。 在此处输入图像描述

我的列表对象包含 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:我认为我在这里遇到的真正问题是数据绑定如何选择要选择的项目?我注意到第一个获取数据绑定的下拉列表随机选择列表中的第一个值,而第二个下拉列表出于某种原因尝试绑定到列表中的最后一个值。

4

2 回答 2

0

我以前遇到过这个问题,我认为您不能将同一个列表绑定到多个下拉列表。

于 2013-02-18T21:50:44.177 回答
0

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

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

dropDown.SelectedIndex = -1; 

...到你的第二个LoadListDropDown超载的顶部。

于 2013-02-18T22:06:54.123 回答