0

这是我在 rowdatabound 事件中的编辑代码。

if (e.Row.RowType == DataControlRowType.DataRow)
            {
                if ((e.Row.RowState & DataControlRowState.Edit) > 0)
                {
                    DropDownList dl = (DropDownList)e.Row.FindControl("Sectionname");
                    comp.MEDIUM = Convert.ToString(e.Row.FindControl("Medium"));
                    comp.CLASSNAME = Convert.ToString(e.Row.FindControl("ClassName"));
                    comp.ACADAMICYEAR = Convert.ToString(e.Row.FindControl("AcademicYear"));
                    DataTable worktype = inter.bindsectionforgird(comp);
                    dl.DataSource = worktype;
                    dl.DataTextField = "SectionName";
                    dl.DataValueField = "SectionId";
                    dl.DataBind();
                }
            }

我仍然无法获得这些字段的值。

4

1 回答 1

0

我建议您在RowDataBound事件中编写代码

  void GridView_RowDataBound(Object sender, GridViewRowEventArgs e)
 {

if(e.Row.RowType == DataControlRowType.DataRow)
   {
       // Write your code here           
   }

 }

你可以找到你的网格列

e.Row.FindControl("yourControlID")

您可以在
MSDN 参考 1
MSDN 参考 2
CodeProject中查看详细信息

于 2013-08-16T11:59:11.757 回答