0

我添加了与存储在会话变量中的 csv 文件数据绑定的 gridview,如下所示:

 dgData.DataSource = Session["csvdata"];
 dgData.DataBind();

它完美绑定。但我需要在 gridview 的第一行添加下拉列表,以便将数据库列名称与网格标题映射。我使用此代码添加下拉列表。但下拉列表添加到标题而不是第一行。

 protected void dgData_RowCreated(object sender, GridViewRowEventArgs e)
{
      if (e.Row.RowType == DataControlRowType.Header )
    {

        for (Int32 i = 0; i < e.Row.Cells.Count; i++)
        {
            DropDownList ddl = new DropDownList();
            ddl.ID = "ddlCol" + i.ToString ();
            e.Row.Cells[i].Controls.Add(ddl);
        }

    }

}
4

1 回答 1

0
 protected void dgData_RowDataBound(object sender, GridViewRowEventArgs e)
 {
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            DropDownList ddl;
            if (e.Row.RowIndex == 0)
            {
                for (Int32 i = 0; i < e.Row.Cells.Count; i++)
                {
                    ddl = new DropDownList();
                    ddl.ID = "ddlCol" + i.ToString ();
                    e.Row.Cells[i].Controls.Add(ddl);
                }
            }
       }
}

此代码将控件添加到网格视图的第一行

于 2013-06-01T23:50:00.517 回答