-
XMl caching data/ Recordet Save
Hello List!
I am using the following methods to get my xml to the client:
strSQL = "SELECT DATA FROM TABLE"
set oRs = Server.CreateObject("ADODB.Recordset")
oRs.CursorLocation = 3
oRs.Open strSQL, oConn
oRs.Save Response, adPersistXML
and the following methods to load it:
set XMLDocPlan = CreateObject("microsoft.xmldom")
' Not an Asynchronous Operation
XMLDocPlan.async=false
' Load Data from Server
XMLDocPlan.load "test_chart_plan.asp"
everything appears to work fine initially I can traverse the rs:data and
get my client side control loaded with the data, but the XML returned after
a couple reloads starts to return duplicate records, and multiple sets when
there should only be one (verified via the database). I have expired the
called data generator and used the usual 'cache no more' tricks. Is there
something in XML specifically to ensure this weird behavior stops? Thanks
in advance.
Andy Spencer
a.spencer@kunzleigh.com
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Development Centers
-- Android Development Center
-- Cloud Development Project Center
-- HTML5 Development Center
-- Windows Mobile Development Center
|