Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / web / ASP.NET

Export to Excel in ASP.NET C#

4.84/5 (11 votes)
24 Feb 2014CPOL 86.7K  
Export Gridview data in Excel formate with gridview design.

Introduction

Export Gridview data to Excel formate and provide download that data.

Background 

That provide the your Gridview control data and DataGrid control data into Excel formate with rows and column formate. its also useful to make your own custome design and then export it.

Using the code

Provide very sort and efficient solution of export your data which are display in gridview and datagrid control are exported into excel fomate.

For implementation try to follow below steps..

Step-1   Go your page source and write EnableEventValidation="false" .

             <%@ Page Title="" Language="C#" EnableEventValidation="false"                  MasterPageFile="~/Admin/AdminMaster.master"  AutoEventWireup="true" odeFile="Admin_TotalStudents.aspx.cs" Inherits="Admin_Admin_TotalStudents" %>

 Step-2   Then add below code in button click event.  

C++
  protected void btnexport_Click(object sender, EventArgs e)
    {
        Response.Clear();
        Response.AddHeader("content-disposition", "attachment;filename=ExportData1.xls");
        Response.Charset = "";
        Response.ContentType = "application/vnd.xls";
        StringWriter StringWriter = new System.IO.StringWriter();
        HtmlTextWriter HtmlTextWriter = new HtmlTextWriter(StringWriter);
        
        gridstudentdetails.RenderControl(HtmlTextWriter);
        Response.Write(StringWriter.ToString());
        Response.End();    }  <span style="font-size: 9pt;"> </span>
C++
public override void VerifyRenderingInServerForm(Control control)
    {
        /* Confirms that an HtmlForm control is rendered for the specified ASP.NET
           server control at run time. */

            

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)