Bu örneğin çalışması lazım herhangi bir kısıtlama olmadığı zaman
Set xmlHttp = Server.CreateObject("MSXML2.XMLHTTP")
xmlHttp.open "GET", "http://orneksite.com/browser.php?brow=" & aranan, False
xmlHttp.send
If xmlHttp.Status = 200 Then
Set xmlDoc = Server.CreateObject("MSXML2.DOMDocument")
xmlDoc.loadxml xmlHttp.responseText
Set objListe = xmlDoc.selectNodes("//parser")
For i = 0 To objListe.Length - 1
cihaz = objListe(i).GetAttribute("cihaz")
response.write "" & cihaz & ""
Next
End If