当前位置: 代码迷 >> ASP >> 怎么通过asp来读取其他网站的内容
  详细解决方案

怎么通过asp来读取其他网站的内容

热度:9968   发布时间:2013-02-26 00:00:00.0
如何通过asp来读取其他网站的内容
如何通过asp来读取其他网站的内容呢

通过xmlhttp
反正jsp读取是失败的
1 楼 sbabzc 昨天  
转至:http://www.xszlo.com/article/2012-11-14/7500

通过xmlhttp的GET方法来读取,然后保存到指定的目录里

FromUrl:是读取的网址

FIlePath:网址内容保存的地址


Private Sub ToHtml(FromURL,FilePath)
On Error Resume Next
FilePath = Server.MapPath(FilePath)

StrXmlHttp = SiteXmlHttp()
Set xmlHttp = Server.CreateObject(StrXmlHttp)
If StrXmlHttp = "Microsoft." & "XMLHTTP" Then
Else
xmlHttp.setTimeouts 10000, 10000, 15000, 15000
End If
xmlHttp.Open "GET",Replace(FromURL,":999",""),False
xmlHttp.Send()

具体代码到网站上看下
  相关解决方案