travisbrown
Technical User
- Dec 31, 2001
- 1,016
How viable is xmlhttp in jsp? Anyone know of some good samples? I've worked with it in asp, but wondering it there is something comparable in jsp.
Thanks.
Thanks.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<%
Response.Buffer = True
Set xml = Server.CreateObject("Microsoft.XMLHTTP")
xml.Open "GET", "[URL unfurl="true"]http://www.domain.com",[/URL] False
xml.Send
Response.Write xml.responseText
Set xml = Nothing
%>