protected void Page_Load(object sender, EventArgs e)
{
//creating a table for the grid use namespace System.Data;
DataTable dt = new DataTable ();
//adding columns to the datatale
try
{
dt.Columns.Add(Srno);
dt.Columns.Add(Name);
}
catch { }
//adding values to the datatable
for (int i = 1; i <= 10; i++)
{
DataRow dr = dt.NewRow();
dr[0] = i;
dr[1] = Meetu Choudhary + i.ToString();
dt.Rows.Add(dr);
}
//binding databale to the grid
grdtoexport.DataSource = dt;
grdtoexport.DataBind();
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data;
using System.Configuration;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Text;
using System.IO;
namespace ExportToExcel
{
/// <summary>
/// Summary description for ExportToExcel
/// </summary>
public class ExportToExcel
{
//Constructor of the class
public ExportToExcel()
{
}
//fuction call to export the grid to the excel file
//GridView1 is the grid to be passed while calling to export
//strFileName will be the filename passed at the time of calling by
//which the file will be saved at client system
public void ExportGridView(GridView GridView1, String strFileName)
{
//calling the function to prepare the gridview to export
PrepareGridViewForExport(GridView1);
HttpContext.Current.Response.ClearContent();
HttpContext.Current.Response.Buffer = true;
HttpContext.Current.Response.AddHeader( content- disposition , attachment;filename= + strFileName);
HttpContext.Current.Response.ContentType = application/ms-excel ;
HttpContext.Current.Response.Charset = ;
StringWriter sw = new StringWriter();
HtmlTextWriter htw = new HtmlTextWriter(sw);
GridView1.RenderControl(htw);
HttpContext.Current.Response.Write(sw.ToString());
HttpContext.Current.Response.End();
}
//this function will prepare the grid controls to be exported
//private void PrepareGridViewForExport(Control gv)
{
LinkButton lb = new LinkButton();
Literal l = new Literal();
string name = String.Empty;
for (int i = 0; i < gv.Controls.Count; i++)
{
if (gv.Controls[i].GetType() == typeof(LinkButton))
{
l.Text = (gv.Controls[i] as LinkButton).Text;
gv.Controls.Remove(gv.Controls[i]);
gv.Controls.AddAt(i, l);
}
else if (gv.Controls[i].GetType() == typeof(DropDownList))
{
l.Text = (gv.Controls[i] as DropDownList).SelectedItem.Text;
gv.Controls.Remove(gv.Controls[i]);
gv.Controls.AddAt(i, l);
}
else if (gv.Controls[i].GetType() == typeof(CheckBox))
{
l.Text = (gv.Controls[i] as CheckBox).Checked ? True : False ;
gv.Controls.Remove(gv.Controls[i]);
gv.Controls.AddAt(i, l);
}
if (gv.Controls[i].HasControls())
{
PrepareGridViewForExport(gv.Controls[i]);
}
}
}
} // class ExportToExcel
} // namespace ExportToExcel
//Here is a template of this function. Copy/Paste and UNCOMMENT it with
//class code that calls the ExportGridView() function
//public override void VerifyRenderingInServerForm(Control control) {}
for more details on VerifyRenderingInServerForprotected void btnexport_Click(object sender, EventArgs e)
{
//creating the object of the class
ExportToExcel ex = new ExportToExcel();
//exporting the grid to the excel
ex.ExportGridView(grdtoexport, Client.xls);
}
//Reminder: Include the VerifyRenderingInServerForm to avoid unwanted error
//while exporting the grid. To overcome the gridview exception
// "grid must be in form with runat=server"
//when rendering it to a string (not on page) for writing it else where you overide the
//VerifyRenderingInServerForm method in the page your doing it on. i.e.
public override void VerifyRenderingInServerForm(Control control)
{
}
Have a question about something in this article? You can receive help directly from the article author. Sign up for a free trial to get started.
Comments (0)