VIBlend SuperGridView ships with build-in data export providers for Microsoft Excel, XML, HTML and CSV.
The export functionality is accessible through the GridExport class inside VIBlend.SuperGridView.DataExport namespace.
Here's a a small example which demonstrates how easy it is to export the data grid's content:
VIBlend.SuperGrid.DataExport.GridExport gridExport = new VIBlend.SuperGrid.DataExport.GridExport();
gridExport.ExportToHTML(superGrid1, fileName); // export to HTML
gridExport.ExportToExcelXML(superGrid1, fileName); // export to MS Excel
gridExport.ExportToXML(superGrid1, fileName); // export to XML
gridExport.ExportToCSV(superGrid1, fileName); // export to CSV