Click here to Skip to main content
Click here to Skip to main content

Export GridView Data to Excel using OpenXml

By , 15 Apr 2012
 

Introduction

This article tells how to export ASP.NET GridView data to an Excel file using Office OpenXML SDK 2.0.

Background

Exporting GridView data to Excel is a common functionality you would have come across while working in web forms. There are many ways to do this. Indeed, couple of approaches require Microsoft ACE engine to be installed on the server. I thought why not we try do this using Office OpenXML?

Using the code

So I started with creating an ASPX page (would look like the below one…)

An Export button click event would do:

DataTable table = new DataTable();   // create an empty data table
CreateTable(grdvTest, ref table);    // fill it with grid view data 
// ExportToExcel(table);
// copy this file from Temp directory to the current working directory
// Response.Redirect(localCopy); 
CreateTable(grdvTest, ref table);    // fill it with grid view data 
// ExportToExcel(table);
// copy this file from Temp directory to the current working directory 
// Response.Redirect(localCopy);

Let’s see what these method internally do!

  1. CreateTable will create columns and populates the row.
  2. for (int i = 0; i < grdvTest.HeaderRow.Cells.Count; i++)
        table.Columns.Add(grdvTest.HeaderRow.Cells[i].Text);             
    // fill rows             
    foreach (GridViewRow row in grdvTest.Rows)             
    {                 
        DataRow dr;                 
        dr = table.NewRow();                 
        for (int i = 0; i < row.Cells.Count; i++)
        {
              dr[i] = row.Cells[i].Text.Replace("&nbsp;", "");
        }
        table.Rows.Add(dr);
    }
  3. Export to Excel will create a file in systems temporary location and returns the file name.
  4. string excelfile = Path.GetTempPath() +
                            Guid.NewGuid().ToString() + ".xlsx";            
    using (SpreadsheetDocument excelDoc = SpreadsheetDocument.Create(
        excelfile,
        DocumentFormat.OpenXml.SpreadsheetDocumentType.Workbook))
        {
          CreateExcelParts(excelDoc, table);
        }
    return excelfile;
  5. Once the temporary file ready, stream it to client using Response.Redirect. The Excel file would look like:

Points of Interest

This method actually creates an Excel file on server (without using interops) and streams the file to client.

History

This article can further be extended to include style information during data export.

License

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

About the Author

pramodhegde88
Software Developer
India India
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionHow to add sheets???memberfense5 Mar '13 - 5:41 
Questionloop thru dropdownlist of gridviewmembersayedalishakeel20 Apr '12 - 3:37 
AnswerRe: loop thru dropdownlist of gridviewmemberpramodhegde8821 Apr '12 - 0:04 
Would you like to get only the selected data from the dropdown or all the data?
GeneralRe: loop thru dropdownlist of gridviewmembersayedalishakeel23 Apr '12 - 19:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 15 Apr 2012
Article Copyright 2012 by pramodhegde88
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid