鲁南热线论坛论坛登录 → 密码遗忘

取回论坛密码(第一步:用户名)
请输入您的用户名
验证码 点击获取验证码
说明:本操作将修改您的论坛密码,请确认您已经填写了论坛密码问题及答案。


<% dim url,page,rr,i,cutpage,str 'on error resume next 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=bytesToBSTR(Http.responseBody,"GB2312") set http=nothing if err.number<>0 then err.Clear 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 '=================================================== url="http://top.baidu.com/top_keyword.html" page= getHTTPPage(url) cutpage=split(page,"") str="" for i=1 to ubound(cutpage) rr=instr(cutpage(i),"") str=str&mid(cutpage(i),1,rr-1)&" " next str=replace(replace(str,"
",""),"
","") response.Write(""&str&"") %>