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

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

1 Nov 2011CPOL 7.2K  
Tip, change your loop to the following to also support derived classes:foreach (var item in controlList ){ GridView asGridView = item as GridView; if (asGridView != null) { Utilities.RenderControlInExcel(asGridView, workBook); } DetailsView asDetailsView...
This is an old version of the currently published tip/trick.

This article is currently in progress. This version is not yet publicly viewable

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