示例#1
0
 protected void RadGrid1_ItemCommand(object sender, GridCommandEventArgs e)
 {
     if (e.CommandName == RadGrid.ExportToExcelCommandName)
     {
         RadGridReport.AllowPaging = false;
         RadGridReport.Rebind();
     }
 }
示例#2
0
 private void BindGrid()
 {
     RadGridReport.DataSource = Session["Result"];
     RadGridReport.DataBind();
 }