繁体中文
设为首页
加入收藏
当前位置:ASP技术首页 >> 安全加密 >> 利用XMLHTTP 从其他页面获取数据

利用XMLHTTP 从其他页面获取数据

2006-05-15 08:00:00  作者:  来源:互联网  浏览次数:0  文字大小:【】【】【
简介:  我们在编写ASP代码的时候,大家都知道可以通过post或者get获得form表单的数据,那么我们如何直接获得其他页面上的数据呢?这就要借助xmlhttp协议了。xmlhttp是xmldom技术的一部分。 下面的代码就是一个很简单...

  我们在编写ASP代码的时候,大家都知道可以通过post或者get获得form表单的数据,那么我们如何直接获得其他页面上的数据呢?这就要借助xmlhttp协议了。xmlhttp是xmldom技术的一部分。

下面的代码就是一个很简单的例子,我们利用xmlhttp技术,把http://www.codetoad.com/站点首页的代码以xml的形式完全获取,并且在页面中输出。

<%

Dim objXMLHTTP, xml

Set xml = Server.CreateObject("Microsoft.XMLHTTP")

xml.Open "GET", "http://www.codetoad.com/", False

' Pull the data from the web page

xml.Send

Response.write "Here's the html we now have in our xml object"

Response.write "

"

Response.Write ""

Response.Write xml.responseText

Response.Write ""

Response.write "

"

Response.write " Now here's how the page looks:

"

Response.Write xml.responseText

Set xml = Nothing

%>

下面是另一个实例

style.xsl:

moreover...

_blank

_blank

_blank

GMT

责任编辑:admin
相关文章