找回密码
 入住遨海湾
搜索
网站解决方案专享优惠-3折上云
查看: 1300|回复: 0

asp利用Microsoft.XMLHTTP获取页面信息,小偷程序入门

[复制链接]
发表于 2007-2-2 15:01:00 | 显示全部楼层 |阅读模式

登录后查才能浏览下载更多咨询,有问题联系QQ:3283999

您需要 登录 才可以下载或查看,没有账号?入住遨海湾

×
使用方法:
getHTTPPage "http://www.ceowen.com/blog/default.asp"
 <%
      function getHTTPPage(url) 
        on error resume next 
        dim http 
        set http=Server.createobject("Microsoft.XMLHTTP") 
        Http.open "GET",url,false 
        Http.send() 
        if Http.readystate<>4 then
            exit function 
        end if 
        getHTTPPage=bytes2BSTR(Http.responseBody) 
        set http=nothing
        if err.number<>0 then err.Clear  
    end function 
    Function bytes2BSTR(vIn) 
        dim strReturn 
        dim i1,ThisCharCode,NextCharCode 
        strReturn = "" 
        For i1 = 1 To LenB(vIn) 
            ThisCharCode = AscB(MidB(vIn,i1,1)) 
            If ThisCharCode < &H80 Then 
                strReturn = strReturn & Chr(ThisCharCode) 
            Else 
                NextCharCode = AscB(MidB(vIn,i1+1,1)) 
                strReturn = strReturn & Chr(CLng(ThisCharCode) * &H100 + CInt(NextCharCode)) 
                i1 = i1 + 1 
            End If 
        Next 
        bytes2BSTR = strReturn 
    End Function 
%>
遨海湾-心灵的港湾 www.aosea.com
您需要登录后才可以回帖 登录 | 入住遨海湾

本版积分规则

网站解决方案专享优惠-3折上云

QQ|手机版|小黑屋|遨海湾超级社区

GMT+8, 2024-11-22 04:57

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表