我正在尝试将数据绑定到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();
//}