http://forum.lessthandot.com/viewtopic.php?f=27&t=6448 For a long time I have had to make web reports for our company that could be exported to excel. This is a fairly easy process. All you have to do is put your report in an HTML table and add the following 2 lines of code: csharp Line number On/Off | Show/Hide | Select all Response. ContentType = "application/ms-excel" ; Response. AddHeader ( "content-disposition" , "attachment; filename=test.xls" ) ; Code is hi