Ejemplo n.º 1
0
 private void BindGridViewData()
 {
     try
     {
         string schoolyear = ddlSchoolYear.SelectedValue;
         string schoolcode = ddlSchool.SelectedValue;
         PublishandSignOffList.BindGridView(ref GridView1, "SchoolHistory", "DataSet", User.Identity.Name, schoolyear, schoolcode);
     }
     catch (Exception ex)
     {
         var em = ex.Message;
     }
 }
Ejemplo n.º 2
0
 private void BindGridViewData()
 {
     try
     {
         string schoolyear = ddlSchoolYear.SelectedValue;
         string schoolcode = ddlSchools.SelectedValue;
         string schoolarea = ddlSuperarea.SelectedValue;
         //ListGridViewData.BindMyGridView(ref GridView1, "SchoolListbyArea", "DataSet", User.Identity.Name, schoolyear, schoolcode, schoolarea);
         // ListGridViewData.BindMyGridView(ref GridView1, "SchoolListbyArea", "iList", User.Identity.Name, schoolyear, schoolcode, schoolarea);
         PublishandSignOffList.BindGridView(ref GridView1, "SchoolListbyArea", "Dapper", User.Identity.Name, schoolyear, schoolcode, schoolarea);
     }
     catch (Exception ex)
     {
         var em = ex.Message;
     }
 }