Is it possible to transform Access data to XML and then use XSL to read that data again using ASP? I have done this using ASP.NET, but this time I have to use ASP where I'm not that experienced.
The thing is that I'm trying to read some DB data and write it out to an Excel file (or tab separated). I have found a way to write to Excel, but I can't format the data the way I can with XSLT. I used
Set objFileSystemObject = Server.CreateObject("Scripting.FileSystemObject"
and created a csv file...
Can I use XML and XSLT with ASP or is there another way that might work..?
Thanks for your help on this
|)
The thing is that I'm trying to read some DB data and write it out to an Excel file (or tab separated). I have found a way to write to Excel, but I can't format the data the way I can with XSLT. I used
Set objFileSystemObject = Server.CreateObject("Scripting.FileSystemObject"
Can I use XML and XSLT with ASP or is there another way that might work..?
Thanks for your help on this