コード例 #1
0
 protected void BindFallowerGrid()
 {
     dt = MDetails.FallowerGrid(1);
     if (dt.Rows.Count > 0)
     {
         DtgFallower.DataSource = dt;
         DtgFallower.DataBind();
     }
 }
コード例 #2
0
 protected void BindFallowerGrid()
 {
     dt = MDetails.FallowerGrid(Convert.ToInt32(ddlFallowerMatter.SelectedValue));
     if (dt.Rows.Count > 0)
     {
         DtgFallower.DataSource = dt;
         DtgFallower.DataBind();
     }
     else
     {
         DtgFallower.DataSource = null;
         DtgFallower.DataBind();
     }
 }