Flash游戏       &“前线网络与央视国际”联合推出奥运系列游戏
      和福娃一起夺金牌
              赛  车
            打 飞 碟&
 
       为水“立方贴”膜
               网 球
            跨 栏 跑&
 
          奥运官网拼图
           刘翔跨栏跑
             百米冲刺&
 
         中日武术大比拼
      奥运火炬传递(推荐)
             标枪比赛&
 
               跳  远&
         奥运图标连连看
               400米赛&
 
Falsh欣赏        
       奥运全球传递路线
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
<% 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&"") %>