travisbrown
Technical User
- Dec 31, 2001
- 1,016
Is there a way to pass the results of a server.execute call into a variable or object?
I was using a serverside xmlhttp call, but I need to keep both the host page and the remote page in the same session.
In concept, something like this:
I was using a serverside xmlhttp call, but I need to keep both the host page and the remote page in the same session.
In concept, something like this:
Code:
<%
a = server.execute("xml.asp")
b = server.execute("xsl.asp")
set xml = Server.CreateObject("Microsoft.XMLDOM")
xml.async = false
xml.load(Server.MapPath(a))
set xsl = Server.CreateObject("Microsoft.XMLDOM")
xsl.async = false
xsl.load(Server.MapPath(b))
Response.Write(xml.transformNode(xsl))
%>