gridview - Exporting multiple Grid Views on a page to mutiple worksheets of a single excel file in ASP.Net -
i know there quite few techniques export grid view excel. below few:-
- html rendering htmltextwriter , sending response content type excel.
- using xml technique , generating xml string excel sheets.
- using office interop dlls create object excel document , work on accordingly.
now requirement is, have multiple grid views on aspx page , these grid views loaded different data sources. have export button, have export each grid view separate work-sheet of single excel file.
this can done using second , third techniques mentioned above. want know possibility of using first technique i.e. using htmltextwriter
you can using open xml
http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=5124
Comments
Post a Comment