havey
02-07-2005, 03:09 PM
does the server store a cache of the called page, being called like so:
Dim objXMLHTTP, xml
Set xml = Server.CreateObject("MSXML2.ServerXMLHTTP")
xml.Open "GET", "http://www.page.com/page.asp", False
xml.Send
strRetVal = xml.responseText
I need the information gathered in the above call for many pages, but don't want to call it on every page, was wondering if the server caches this page cause its using the server component? waht the be way to accomplish this?
thanks
Dim objXMLHTTP, xml
Set xml = Server.CreateObject("MSXML2.ServerXMLHTTP")
xml.Open "GET", "http://www.page.com/page.asp", False
xml.Send
strRetVal = xml.responseText
I need the information gathered in the above call for many pages, but don't want to call it on every page, was wondering if the server caches this page cause its using the server component? waht the be way to accomplish this?
thanks