|
<%
Response.Buffer = True
Dim objXMLHTTP, html
' Create an xmlhttp object:
Set html = Server.CreateObject("Microsoft.XMLHTTP")
' Or, for version 3.0 of XMLHTTP, use:
' Set html = Server.CreateObject("MSXML2.ServerXMLHTTP")
' Opens the connection to the remote server.
html.Open "POST", "https://quotien.onlinebank.com/RemoteHtml/ORLoginForm?FIID=1932", False
' Actually Sends the request and returns the data:
html.Send
'Display the HTML
Response.Write html.responseText
Set xml = Nothing
%>






|