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

Export to EXCEL from Datatable in C#.Net

By , 12 Mar 2012
 

Introduction

Export the Datatable records to Excel sheet in C#.net 

Using the code 

This below function used to generate excel file based on datatable.

public void ExportToExcel(DataTable dt)
{
	if (dt.Rows.Count > 0)
	{
		string filename = "DownloadMobileNoExcel.xls"; 
		System.IO.StringWriter tw = new System.IO.StringWriter();
		System.Web.UI.HtmlTextWriter hw = new System.Web.UI.HtmlTextWriter(tw);
		DataGrid dgGrid = new DataGrid();
		dgGrid.DataSource = dt;
		dgGrid.DataBind();

		//Get the HTML for the control.
		dgGrid.RenderControl(hw);
		//Write the HTML back to the browser.
		//Response.ContentType = application/vnd.ms-excel;
		Response.ContentType = "application/vnd.ms-excel";
		Response.AppendHeader("Content-Disposition", "attachment; filename=" + filename + "");
		this.EnableViewState = false;
		Response.Write(tw.ToString());
		Response.End();
	}
}

 Call the above function in button click event

protected void btnSave_Click(object sender, EventArgs e)
{
    ExportToExcel((DataTable)ViewState["gvMobile"]);  
}
public override void VerifyRenderingInServerForm(Control control)

{ 

} 

 

License

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

About the Author

Ramanujam Shankar
Web Developer Mahindra Logisoft Business Solution Limited, Chenn
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   
QuestionHimembersarathkumarnallathambi3 Aug '12 - 20:48 

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.130523.1 | Last Updated 12 Mar 2012
Article Copyright 2012 by Ramanujam Shankar
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid