Category: export

  • Exporter–new functionalities

      I have added to the export to Excel,Word,Pdf,Html,CSV new functionalities: Export multiple lists to multiple sheets in the same Excel: Wiki at https://github.com/ignatandrei/Exporter/wiki/Export-multiple-sheets-in-Excel,video demo at https://youtu.be/ZLjnZvP9m0U Export from Powershell: Wiki at https://github.com/ignatandrei/Exporter/wiki/Export—Powershell,video Demo at https://youtu.be/PhBdnnaAbr0 Export DataSet to Excel: Wiki at https://github.com/ignatandrei/Exporter/wiki/Export-DataSet,video demo at https://youtu.be/mvlDjF1TeVc .NET 4.0 version available at https://github.com/ignatandrei/Exporter/tree/branchNet4 Enjoy !

  • Exporter–added RSS and IDataReader

      I have added to the Exporter   Export RSS into Word/Excel/PDF  – see https://github.com/ignatandrei/Exporter/wiki/Export-RSS and video at https://youtu.be/AJWIJRAs_Xc  Export IDataRerader(SqlDataReader ) -  see https://github.com/ignatandrei/Exporter/wiki/Export-IDataReader and video at https://youtu.be/kDfNjY1Lfkg   Also,the RSS could be tested at http://exporter.azurewebsites.net/Home/ExportData  The code source is free and all on https://github.com/ignatandrei/Exporter

  • Export to Excel,Word,Pdf,Html,CSV–work in progress

    In my previous post I have announced the application / package that exports data ( classes/datatable/csv/json) to Word/Excel/PDF. I have made also videos for show some features – the playlist is at https://www.youtube.com/playlist?list=PL4aSKgR4yk4MqsH5M-f1f5YLVG-nwr4FG&jct=8gXZuQaCYGLOsL6t5dNN9rEx5r_8vQ The playlist contains: Export Json To Excel Word PDF from javascript   Export List Objects To ExcelWordPDF Export CSV To Excel Word…

  • Export to Excel,Word,Pdf,Html,CSV

    I have made an application / package that exports data ( classes/datatable/csv/json) to Word/Excel/PDF. I have made several tries in the past,however now is the definitive source for .NET 4.x It is FULL code source,with tests and tutorials..   The code is at https://github.com/ignatandrei/Exporter  The NuGet package is at https://www.nuget.org/packages/ExporterWordExcelPDF The demo online is at…

  • Export Data Table to Excel-Word-PDF-CSV-HTML-XML–Razor style

    This tutorial show you how to export a DataTable to Excel,Word,CSV,HTML,PDF. GitHub Demo at https://github.com/ignatandrei/Export_Word_Excel_PDF_CSV_HTML The Nuget package is at http://www.nuget.org/packages/Exporter/ YouTube demo at http://youtu.be/jo0v8Asm3sE

  • MVC Export List of objects to Excel-Word-PDF-CSV-HTML-XML–Razor style

    This is the second part of the demo of the Exporter  in action  – this time in MVC . It is a little more complicated,because you need to show to the exporter the full path where to put the generated file string filePathExport = Server.MapPath(“~/exports/a” + ExportBase.GetFileExtension((ExportToFormat)id)); All others are the same easy stuff  -add…

  • Export to Word / Excel / PDF / CSV / HTML

    I have made a NuGet package that exports a List to Word(2003/2007) / Excel(2003/2007) / PDF  / CSV / HTML. It is made with Razor Templating – interpreted by WestWind Razor Engine ( source code at https://github.com/RickStrahl/Westwind.RazorHosting ) What it does it generates templates in Razor ( that can  be freely modified after) and it…