• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

用ASP+XMLHTTP编写天气预报程序_jquery

jquery 搞代码 7年前 (2018-06-12) 147次浏览 已收录 0个评论

  本人就职于一个本地门户网站,每天网站上的天气都得更新。久而久之感到相当麻烦,于是写了一个定时的新闻小偷,帖出来大家参考一下系统要求: 支持FSO, 服务器UDP tcp/IP 没有屏蔽。

  下面是小偷的内容:

FileName TianQi.asp

Write By Niaoked QQ408611119
http://www.knowsky.com
<%
 if hour(now)=9 and minute(now)<30 then
  getCategories()
 end if
 Function getCategories()
  on error resume next
  Dim oXMLHTTP ‘ As Object
  Dim oCategories ‘ As Object
  Dim BodyText
  Dim Pos,Pos1
  Set oXMLHTTP = CreateObject(“Microsoft.XMLHTTP”)
  ’— set the XMLHTTP call and issue send (no parm as category
  ’— is included in URL
  oXMLHTTP.open “GET”,”http://weather.china.com.cn/travel_gntq.php?cityid=56196&cityname=绵阳”,False ‘这个地方换成你自己的地址
  oXMLHTTP.send
  ’— load the response into the Categories data island
  BodyText=oXMLHTTP.responsebody
  BodyText=BytesToBstr(BodyText,”gb2312″)
  Pos=Instr(BodyText,”<body”)
  pos1=Instr(BodyText,”</body>”)
  BodyText=mid(BodyText,pos,pos1)
  BodyText=split(BodyText,”<table”)
  Pos=Instr(BodyText(4),”<tr”)
  pos1=Instr(BodyText(4),”</tr>”)
  Body=mid(BodyText(4),pos,len(BodyText(4))-pos)
  body=split(body,”</table>”)
  body1=split(replace(replace(replace(body(0),”
“,””),”</td>”,””),”</tr>”,””),”天气”)
  for i= 1 to ubound(body1)
   body3=split(body1(i),”<td”)
   weather=weather & “document.write(“””& i&”$” & “天气” & htmlEncode(trim(body3(0))) & “””);” & vbcrlf
  next
  weather=replace(weather,”1$”,”<FONT color=#ffffff>【今天】</FONT>”)
  weather=replace(weather,”2$”,”<FONT color=#ffffff>【明天】</FONT>”)
  weather=replace(weather,”3$”,”<FONT color=#ffffff>【后天】</FONT>”)
  Set fs = CreateObject(“Scripting.FileSystemObject”)
  Set f = fs.CreateTextFile(request.ServerVariables(“APPL_PHYSICAL_PATH”)& “tq.js“, True)
  f.write(“document.write(‘绵阳天气预报:’);” &vbcrlf & replace(weather,”
“,””))
  f.close
  Set f = nothing
  Set fs = nothing
  response.write “绵阳天气预报:”& weather
  Set oXMLHTTP = Nothing
  if err.number<>0 then
   response.write “出错了,错误描述:”&err.description & “
错误来源” err.source
   response.End()
  end if
 End Function

[1] [2]  下一页

欢迎大家阅读《用ASP+XMLHTTP编写天气预报程序_jquery,跪求各位点评,若觉得好的话请收藏本文,by 搞代码


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:用ASP+XMLHTTP编写天气预报程序_jquery
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址