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