Hi all,
I would need to know how to fill an XLS or DOC template document with data using ASP.NET.
Currently I am migrating my application form Access ADP/SQL Server to ASP.NET frontend. In Access I was using the following scenario
1. User defines a document template for Letter, Fax, Invoice etc. in Word. Fields that are going to be replaced are marked with tags like <Customer>, <Address>, <Zip>
2. The document is saved and moved into a common location on a network drive. (Will be probably SQL Server in new version)
3. When exporting data, Access opens the requested template and does Search and Replace of the tags using COM automation (Not available in ASP.NET). When generating a serial letter (like Invitation) every template page was copied and filled in a loop so the resulting document could have many pages.
The goal of this procedure was that user was able to define his own office templates without any involvement of a programmer.
Is something like this possible with ASP.NET? Especially the point 3 seems to be quite difficult.
Thanks in Advance for your opinion!
David