1

I am exporting an aspx page as an xls (excel) file.

I have everything working fine, but am wondering if there is a way to section some data from the aspx page into different excel worksheets?

Joda Maki
  • 5,649
  • 6
  • 27
  • 36
  • Can you give a bit more information about how you export the data, which technique you're using? – Koen Mar 03 '11 at 23:31

1 Answers1

0

Here's how I export data from an ASP.NET page to Excel:

http://www.blackbeltcoder.com/Articles/asp/creating-downloadable-content-dynamically

If you have something else in mind, you'll need to be more specific.

Jonathan Wood
  • 65,341
  • 71
  • 269
  • 466
  • This is how I do it, but is there a way to export into multiple worksheets? – Joda Maki Mar 04 '11 at 14:36
  • I see. I'm pretty sure this is not possible. CSV only supports raw data and has no syntax for controlling any Excel formatting or worksheet information. – Jonathan Wood Mar 04 '11 at 15:53