|
热门文章 |
|
|
|
相关文章 |
|
没有相关文章 |
|
|
asp远程读取网页源代码 |
来源:百度空间 更新时间:2011/11/28 17:27:15 阅读次数:
字体:[大 中 小大 中 小大 中 小] 我要投稿 |
'asp远程读取网页源代码 '读取数据 Function GetURL(URL) Set http=Server.CreateObject("Microsoft.XMLHTTP") On Error Resume Next http.Open "GET",URL,False http.send() if Err then Err.Clear Response.Write("没有找到网页!") Response.End() End if getHTTPPage=bytesToBSTR(Http.responseBody,"gb2312") set http=nothing GetURL=getHTTPPage End Function '转换编码 Function BytesToBstr(body,Cset) dim objstream set objstream = Server.CreateObject("adodb.stream") objstream.Type = 1 objstream.Mode =3 objstream.Open objstream.Write body objstream.Position = 0 objstream.Type = 2 objstream.Charset = Cset BytesToBstr = objstream.ReadText objstream.Close set objstream = nothing End Function '调用方法 Content=GetURL(http://www.cy179.cn) Response.Write(Content) |
上一篇文章: 用asp制作多关键字搜索下一篇文章: asp中FSO的读写删操作 |
|
|