Ok this is my asp code so far
<%
Response.Buffer = True
Dim objXMLHTTP, xml
' Create an xmlhttp object:
Set xml = Server.CreateObject("Microsoft.XMLHTTP")
key = Request.QueryString("key")
' Opens the connection to the remote server.
xml.Open "GET", " "& key &"" , False
' Sends the request and returns the data:
xml.Send
xmltext = xml.responseText
Set xml = Nothing
set xmlDoc=CreateObject("Microsoft.XMLDOM")
xmlDoc.async="false"
xmlDoc.load(xmltext)
%>
Now how do I access individual nodes from xmlDoc
<%
Response.Buffer = True
Dim objXMLHTTP, xml
' Create an xmlhttp object:
Set xml = Server.CreateObject("Microsoft.XMLHTTP")
key = Request.QueryString("key")
' Opens the connection to the remote server.
xml.Open "GET", " "& key &"" , False
' Sends the request and returns the data:
xml.Send
xmltext = xml.responseText
Set xml = Nothing
set xmlDoc=CreateObject("Microsoft.XMLDOM")
xmlDoc.async="false"
xmlDoc.load(xmltext)
%>
Now how do I access individual nodes from xmlDoc