Apr 14, 2004 #1 kina1 MIS Sep 20, 2001 15 US When I try to export my web based report to Excel, only HTML shows, not the report. What could be wrong? Any assistance is greatly appreciated!! Thanks!
When I try to export my web based report to Excel, only HTML shows, not the report. What could be wrong? Any assistance is greatly appreciated!! Thanks!
Apr 14, 2004 1 #2 Veep Programmer Jan 10, 2002 1,368 US Code: <% 'Change HTML header to specify Excel's MIME content type Response.ContentType = "application/vnd.ms-excel" %> <html> <head> <title>Your Title</title> </head> <body> <% 'code that generates your report %> </body> </html> Upvote 0 Downvote
Code: <% 'Change HTML header to specify Excel's MIME content type Response.ContentType = "application/vnd.ms-excel" %> <html> <head> <title>Your Title</title> </head> <body> <% 'code that generates your report %> </body> </html>