在itemdatabound上的listview中设置Dropdownlist值

时间:2010-04-01 13:01:56

标签: asp.net listview itemdatabound

我有动态来的年份下拉列表。我已经使用对象datasource.on填充了下拉列表。在listview控件中插入它正常工作。但是当我点击编辑按钮时,应该设置来自数据库的下拉列表值。   例如如果我有一行包含Year = 2006和month =“Jan” 然后点击编辑按钮这些下拉列表应该填满。

我已经在ItemDataBound中编写代码来设置dropdownlilst的值。但是当我使用findcontrol时,它取空值,因此对象引用错误即将到来。所以请给我解决方案。

感谢

萨米尔

2 个答案:

答案 0 :(得分:2)

 protected void MyListView_ItemDataBound(object sender, ListViewItemEventArgs e)
 {
     if (e.Item.ItemType == ListViewItemType.DataItem)
     {
          DropDownList ddl = (DropDownList)e.Item.FindControl("nameOfDDLOnAspxPage");
          ddl.SelectValue = (however you are getting the year data for this row);
     }
 }

答案 1 :(得分:1)

我写了下面的代码

protected void ListView_Articles_ItemDataBound(object sender,ListViewItemEventArgs e)         {

        if (e.Item.ItemType == ListViewItemType.DataItem)
        {
            if (cmd == "edit")
            {
                // Display the e-mail address in italics.
                int month, year;
                month = Convert.ToDateTime(DataBinder.Eval(((ListViewDataItem)e.Item).DataItem,"Created")).Month;
                year = Convert.ToDateTime(DataBinder.Eval(((ListViewDataItem)e.Item).DataItem, "Created")).Year;
                ListViewDataItem item = (ListViewDataItem)e.Item;

                DropDownList ddlmonth = (DropDownList)e.Item.FindControl("ddlmonth");
                DropDownList ddlyear = (DropDownList)e.Item.FindControl("ddlyear");
                ListItem lstitem = ddlyear.Items.FindByValue(year.ToString()); 

//我发现ddlyear为null,因此无法绑定数据。

if (ddlmonth != null)
                {
                    foreach (ListItem monthitem in ddlmonth.Items)
                    {
                        if (int.Parse(monthitem.Value) == month)
                        {
                            ddlmonth.ClearSelection();
                            monthitem.Selected = true;
                            return;
                        }
                    }
                }
                if (ddlyear != null)
                {
                    foreach (ListItem yearitem in ddlyear.Items)
                   {
                       if (int.Parse(yearitem.Value) == year)
                        {
                           ddlyear.ClearSelection();
                            yearitem.Selected = true;
                            return;
                        }
                    }
                }
            }

        }


    }