Reputation: 5620
I have an .XLT file which i want to read/write in .net. Can it be opened using .net framework ? As far as i know XLT is Excel Template I have an .XLT file which is like a registration form wherein i want to fill the cells from .net .Is it possible?
Upvotes: 3
Views: 1166
Reputation: 70369
there are several options:
use OpenXML from MS
use a 3rd-party library with several additonal functionalities like creating PDFs etc. (examples are Aspose.Cells or SpreadsheetGear or Flexcel...)
Upvotes: 3