Click here to Skip to main content
15,905,322 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi ,

how to export to dataset which contain multipal table to csv which contain multipal sheets
in asp.net c#
Posted

CSV files do not contain "multiple sheets" - they have no concept of what a sheet is, they are just flat, text based files which happen to use separation characters (commas, usually) to apply some formatting to the data, provided the reader understands the format.

If you want multiple sheets in the same file, you would be better moving to XML based data files (or even a simple database) as at least they are hierarchically organised.
 
Share this answer
 
you can't save multiple sheets. workbooks in csv file. try other format like .XLSX or .XLS instead of .CSV
 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900