You can read an xml file in an ado recordset:

Code:
Set rst = Server.CreateObject("ADODB.Recordset")
rst.Open "myfile.xml", "Provider=MSPersist"
That's it.

Now, I was just wondering if it is possible to use it in asp. I know that the first line has to be:
Code:
Response.ContenType = "TEXT/XML"
I don't know how to output the actual XML recordset from the server.

If I can do that, I can make a disconnected recordset at the client side. Any ideas?