现在时间是:2012-01-30 01:01:25
康福养生网

会员登录

    用户名
    密   码
    验证码
        注册会员

站点公告

  • 没有任何公告

最近更新



| 关于我们 | 免责声明 | 设为首页 | 加入收藏 | 联系站长 | 雁过留声 | 收录链接 | 进入管理 ||

<% Function getHTTPPage(url) dim objXML set objXML=server.createobject("MSXML2.XMLHTTP") objXML.open "GET",url,false On Error Resume Next objXML.send() If objXML.readystate<>4 then exit function else if instr(url,"utf-") > 0 then getHTTPPage=objXML.ResponseText else getHTTPPage=BytesToBstr(objXML.responseBody) end if set objXML=nothing End If if err.number<>0 then err.Clear End Function Function BytesToBstr(body) 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 = "GB2312" BytesToBstr = objstream.ReadText objstream.Close set objstream = nothing End Function Dim Url,Html Url = "http://www.100lian.net/user/19955.html" response.write(getHTTPPage(Url)) %>