You can read an xml file in an ado recordset:
That's it.Code:Set rst = Server.CreateObject("ADODB.Recordset") rst.Open "myfile.xml", "Provider=MSPersist"
Now, I was just wondering if it is possible to use it in asp. I know that the first line has to be:
I don't know how to output the actual XML recordset from the server.Code:Response.ContenType = "TEXT/XML"
If I can do that, I can make a disconnected recordset at the client side. Any ideas?




Reply With Quote