最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

asp通用采集函數(shù)冗余版可以保存文件到本地

 更新時(shí)間:2007年10月28日 16:24:35   作者:  
<%
'名稱(chēng):asp通用采集函數(shù)冗余版,要精品版的有心人自己改
'作者:柳永法
'日期:2007-6-23
Function getHTTPPage(Path)
    t = GetBody(Path)
    getHTTPPage = BytesToBstr(t, "GB2312")
End Function

Function GetBody(url)
    On Error Resume Next
    Set xmlhttp = CreateObject("Microsoft.XMLHTTP")
    With xmlhttp
        .Open "Get", url, False, "", ""
        .Send
        .waitForResponse 1000
        GetBody = .ResponseBody
    End With
    Set xmlhttp = Nothing
End Function

Function BytesToBstr(Body, Cset)
    On Error Resume Next
    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

Function getHTTPimg(url)
    On Error Resume Next
    Dim xmlhttp
    Set xmlhttp = server.CreateObject("MSXML2.XMLHTTP")
    xmlhttp.Open "GET", url, false
    xmlhttp.send()
    If xmlhttp.Status<>200 Then Exit Function
    getHTTPimg = xmlhttp.responseBody
    Set xmlhttp = Nothing
    If Err.Number<>0 Then Err.Clear
End Function

Function Save2Local(from, tofile)
    Dim geturl, objStream, imgs
    geturl = Trim(from)
    imgs = gethttpimg(geturl)
    Set objStream = Server.CreateObject("ADODB.Stream")
    objStream.Type = 1
    objStream.Open
    objstream.Write imgs
    objstream.SaveToFile tofile, 2
    objstream.Close()
    Set objstream = Nothing
End Function

%>

<%
NowDir = server.mappath("/")
Call Save2Local("http://www.baidu.com/img/logo.gif", NowDir & "baidulogo.gif")
Call Save2Local("http://flash.jninfo.net/images/banner.swf", NowDir & "banner.swf")
Call Save2Local("http://www.fzitv.net.com/", NowDir & "jb51.htmll")
response.Write getHTTPPage("http://www.fzitv.net/")
%>

相關(guān)文章

最新評(píng)論

龙州县| 柳州市| 景宁| 虞城县| 东明县| 陈巴尔虎旗| 昌黎县| 财经| 高陵县| 宜宾县| 呼玛县| 新兴县| 乐清市| 桑日县| 巩义市| 开平市| 寿阳县| 沐川县| 沈阳市| 四子王旗| 曲松县| 柏乡县| 宜兰县| 华宁县| 丰台区| 三明市| 望都县| 喀喇沁旗| 博爱县| 喜德县| 白银市| 额尔古纳市| 汉沽区| 云南省| 诸暨市| 盐山县| 茂名市| 西丰县| 武威市| 凤台县| 拜泉县|