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

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

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
6 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 =...

Revisions


  

Compare Revision Minor Date Status Editor
2 - publicly available No 1-Nov-11 4:37 Available Smitha Nishant
1 No 1-Nov-11 2:20 Composing Kabwla.Phone

License

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


Written By
Software Developer (Senior)
Netherlands Netherlands
Doing that 'computer thing' ever since the C64.

Sometimes I feel that being a programmer is much like being a doctor: You just have to know everything and if you don't, something dies.

Either being an application or a patient.

Oddly enough, more people care about the death of their application, than the massacre of people...

Comments and Discussions