Click here to Skip to main content
15,883,809 members
Articles / Web Development / ASP.NET

Export whole page to Excel with infragistics in ASP.NET C#

30 Oct 2011CPOL 4.8K   3
Here is an alternative Excel C# code for Excel ASP.NET DataGrid that is bound to DataTable:DataTable people = (DataTable)Session["people"]; // Create Excel file.ExcelFile ef = new ExcelFile();ExcelWorksheet ws = ef.Worksheets.Add("DataSheet");ws.InsertDataTable(people, "A1", true);...
We're sorry, but the article you are trying to view was deleted at 20 Sep 2013.

Please go to the ASP.NET Table of Contents to view the list of available articles in this section.