I did some googling before posting this and couldn't find my answer. Is it possible to export data directly to excel using the excel exporter without first having to load it into a web grid?
Thanks for the reply and the links Derek. I do appreciate it!
Hi Zack,
You can use the classes in Infragistics.Excel to create a new Workbook, add a Worksheet to it, and add content into the Worksheets' rows and columns before serializing it to any Stream.
https://es.infragistics.com/products/aspnet/frameworks/excel-library
This next page in the online help is a jumping-off point that will lead you to many code examples of using its API (particularly under the "Using..." section).
https://es.infragistics.com/help/aspnet/waw-infragistics-excel-engine
WebGridExcelExporter automates this against an instance of WebGrid with one call to the Export method, but if you don't have a WebGrid then you don't need the exporter.