Jeg bruger dette script til, at hente data med:
<%
dim Side_B
Side_B = "
http://www.xxx.dk/Forum/TH_26.asp" Dim objXMLHTTP, xml
' Create an xmlhttp object:
Set xml = Server.CreateObject("Microsoft.XMLHTTP")
' Or, for version 3.0 of XMLHTTP, use:
' Set xml = Server.CreateObject("MSXML2.ServerXMLHTTP")
' Opens the connection to the remote server.
xml.Open "GET", Side_B, False
' Actually Sends the request and returns the data:
xml.Send
'Display the HTML both as HTML and as text
'Response.Write "<h1>The HTML text</h1><xmp>"
'Response.Write xml.responseText
'Response.Write "</xmp><p><hr><p><h1>The HTML Output</h1>"
%>
<%Response.Write xml.responseText
Set xml = Nothing
%>
Jeg har læst om xmlhttp.getAllResponseHeaders(), men kan den bruges i denne sammenhæng ?