Monday, 5 May 2014

how to export data from grid view to excel in asp.net using c#

To export gridview data to excel we need to write the code like as shown below

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Export Gridview Data to Excel in Asp.net</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:GridView ID="gvDetails" AutoGenerateColumns="false" CellPadding="5" runat="server">
<Columns>
<asp:BoundField HeaderText="UserId" DataField="UserId" />
<asp:BoundField HeaderText="UserName" DataField="UserName" />
<asp:BoundField HeaderText="Education" DataField="Education" />
<asp:BoundField HeaderText="Location" DataField="Location" />
</Columns>
<HeaderStyle BackColor="#df5015" Font-Bold="true" ForeColor="White" />
</asp:GridView>
</div>
<asp:Button ID="btnExport" runat="server" Text="Export to Excel"
onclick="btnExport_Click" />
</form>
</body>
</html>

Now in code behind add following namespaces

C# Code
using System;
using System.Data;
using System.IO;

using System.Web.UI;

After that add following code in code behind like as shown below
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
BindGridview();
}
}
protected void BindGridview()
{
DataTable dt = new DataTable();
dt.Columns.Add("UserId"typeof(Int32));
dt.Columns.Add("UserName"typeof(string));
dt.Columns.Add("Education"typeof(string));
dt.Columns.Add("Location"typeof(string));
dt.Rows.Add(1, "Devi""B.E""Chennai");
dt.Rows.Add(2, "Ramya""MBBS""Coimbatore");
dt.Rows.Add(3, "Rajitha""MBA""Hyderabad");
dt.Rows.Add(4, "Rohini""MSC""Chennai");
dt.Rows.Add(5, "Mahendra""B.E""Bangalore");
dt.Rows.Add(6, "Krissh""B.Tech""Chennai");
gvDetails.DataSource = dt;
gvDetails.DataBind();
}
public override void VerifyRenderingInServerForm(Control control)
{
/* Verifies that the control is rendered */
}
protected void btnExport_Click(object sender, EventArgs e)
{
Response.ClearContent();
Response.Buffer = true;
Response.AddHeader("content-disposition"string.Format("attachment; filename={0}""Customers.xls"));
Response.ContentType = "application/ms-excel";
StringWriter sw = new StringWriter();
HtmlTextWriter htw = new HtmlTextWriter(sw);
gvDetails.AllowPaging = false;
BindGridview();
//Change the Header Row back to white color
gvDetails.HeaderRow.Style.Add("background-color""#FFFFFF");
//Applying stlye to gridview header cells
for (int i = 0; i < gvDetails.HeaderRow.Cells.Count; i++)
{
gvDetails.HeaderRow.Cells[i].Style.Add("background-color""#df5015");
}
gvDetails.RenderControl(htw);
Response.Write(sw.ToString());
Response.End();

}

If you observe above code I added one function that is VerifyRenderingInServerForm this function is used to avoid the error like “control must be placed in inside of form tag”. If we setVerifyRenderingInServerForm function then compiler will think that controls rendered before exporting and our functionality will work perfectly.

Demo


Whenever we run application we will see the screen like as shown below


User ID
User Name
Education
Location
1
Devi
B.E
Chennai
2
Ramya
MBBS
Coimbatore
3
Rajitha
MBA
Hyderabad
4
Rohini
MSC
Chennai
5
Mahendra
B.E
Bangalore
6
Krissh
B.Tech
Chennai


No comments:

Post a Comment