-
XMLHTTP Equiv?
In ASP 3.0, I would sometimes post information to a remote Web page (on the server), receive the response, parse it and then take appropriate action.
I used the ServerXMLHTTP object at the time. I am willing to use that object again if I have to, but I was wondering if there was a better object or function I could use that perhaps VB.Net might have had native.
The remote page takes query string parameters and returns an XML response, just FYI.
-
Found one:
Code:
Dim theString As String
Dim objXML As New System.Xml.XmlDocument()
objXML.Load("http://server/path/default.asp")
Response.Write(objXML.SelectSingleNode("/loginsystem/error").InnerText())
-
So this was kind of like a webservice?
-
I dont understand your question.