0

我正在尝试将数据绑定到DropDownList我使用<asp:DropDownList标签创建的。它成功地适用于第一个DropDownList,但其余两个抛出异常。我知道数据源不是空的,确实有值,所以我唯一能想到的就是另外两个列表框还没有加载或者绑定。

我尝试使用该Page_LoadComplete方法添加内容,但似乎没有触发。我习惯了 MVC,而且我对 Web 表单很陌生,所以我不确定我做错了什么。我是否正确地声明元素尚未加载,如果是这样,一旦加载它们,我该如何绑定它们

protected void Page_Load(object sender, EventArgs e)
    {
        //Page.LoadComplete += new EventHandler(Page_LoadComplete);
        if (DataContext == null)
        {
            DataContext = new ReuseLibraryDataContext(SPContext.Current.Web.Url);
        }

        // top level category for all documents
        _functions = DataContext.ReuseLibrary.Select(p => p.FunctionalCategories).Distinct().ToList();

        // the first sub category
        _sc1 = DataContext.ReuseLibrary.Select(p => p.SubCategoriesLevel1).Distinct().ToList();

        // the second sub category
        _sc2 = DataContext.ReuseLibrary.Select(p => p.SubCategoriesLevel2).Distinct().ToList();


        // add the functions to the dropdown
        listFunctions.DataSource = _functions;
        listFunctions.DataBind();

        // add the sub cat 1 to the dropdown
        listSC1.DataSource = _sc1;
        listSC1.DataBind();

        // add the sub cat 2 to the dropdown
        listSC2.DataSource = _sc2;
        listSC2.DataBind();
    }

    //protected void Page_LoadComplete(object sender, EventArgs e)
    //{
    //    // add the functions to the dropdown
    //    listFunctions.DataSource = _functions;
    //    listFunctions.DataBind();

    //    // add the sub cat 1 to the dropdown
    //    listSC1.DataSource = _sc1;
    //    listSC1.DataBind();

    //    // add the sub cat 2 to the dropdown
    //    listSC2.DataSource = _sc2;
    //    listSC2.DataBind();
    //}
4

1 回答 1

3

我觉得很愚蠢 - 但我会发布问题所在,以防其他人被这样的事情抓住。

即使我提供了一个数据列表,该列表中的任何null对象也会抛出一个NullReferenceException. 很好理解。

为了解决我删除了null值和中提琴。按预期工作。

_sc1.RemoveAll(item => item == null);
_sc2.RemoveAll(item => item == null);

我最终更新了查询以排除空值:

_sc1 = DataContext.ReuseLibrary.Select(p => p.SubCategoriesLevel1).Where(p => p != null).Distinct().ToList();

于 2013-09-20T18:54:08.837 回答