how to export datagrid to .xls AND/OR .pdf?
i need to export a datagrid to excel and pdf however i can't do that through a reportviewer because i don't have a database, i set manually the values of my datagrid. Is there a way to do that, preferab开发者_JS百科ly without a third party library. thanks in advance!
if you can't use reportviewer, maybe you can try for:
XLS: NPOI http://code.google.com/p/npoi/
PDF: PDFSharp or MigraDoc http://www.pdfsharp.net/
ReportViewer doesn't need a database. It can be run in Local Processing mode. If you care about formatting, this is absolutely the best way. For excel with no formatting you could output a CSV file, but writing a PDF without a third party library is going to be a challenge.
You can have a look at this article.
It's about export to pdf, word, excel...
精彩评论