travisbrown
Technical User
- Dec 31, 2001
- 1,016
In ASP I'd write something like this to pull in some external html.
Is there an equivalent in JSP?
Code:
<%
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
%>
Is there an equivalent in JSP?