时间:2021-05-28
本文详细介绍关于ASP.NET的实时天气及24小时天气预报
修改其中的url获得其他城市的天气情况的文章专题。
ASP.NET的实时天气及24小时天气预报(C#)
修改其中的url获得其他城市的天气情况
如广州为:
http://weather.yahoo.com
/forecast/CHXX0037_c.html
注意仅适用于获得yahoo上的天气预报
GetWeather.aspx
-----------------------------------
复制代码 代码如下:<%@Pagelanguage="c#"Codebehind="GetWeather.aspx.cs"AutoEventWireup="false"Inherits="test.GetWeather"%>
<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.0Transitional//EN">
<HTML>
<HEAD>
<title>GetWeather</title>
<metaname="GENERATOR"Content="MicrosoftVisualStudio7.0">
<metaname="CODE_LANGUAGE"Content="C#">
<metaname="vs_defaultClientScript"content="JavaScript">
<metaname="vs_targetSchema"content="http://schemas.microsoft.com/intellisense/ie5">
</HEAD>
<body>
<formid="GetWeather"method="post"runat="server">
<FONTface="宋体">
<P>
<asp:Labelid="lblWeather"runat="server">Weather</asp:Label></P>
<P>
<asp:Buttonid="btnGet"runat="server"Text="GetWeather">
</asp:Button></P>
<P>
<asp:Labelid="Weather2"runat="server">24小时天气</asp:Label></P>
<P>
<asp:Buttonid="btnGet2"runat="server"Text="天气预报">
</asp:Button></P>
</FONT>
</form>
</body>
</HTML>
getWeather.aspx.cs
---------------------------------------
复制代码 代码如下:usingSystem;
usingSystem.Collections;
usingSystem.ComponentModel;
usingSystem.Data;
usingSystem.Drawing;
usingSystem.Web;
usingSystem.Web.SessionState;
usingSystem.Web.UI;
usingSystem.Web.UI.WebControls;
usingSystem.Web.UI.HtmlControls;
usingSystem.Net;
usingSystem.IO;
namespacetest
{
publicclassGetWeather:System.Web.UI.Page
{
protectedSystem.Web.UI.WebControls.LabellblWeather;
protectedSystem.Web.UI.WebControls.LabelWeather2;
protectedSystem.Web.UI.WebControls.ButtonbtnGet2;
protectedSystem.Web.UI.WebControls.ButtonbtnGet;
privatevoidPage_Load(objectsender,System.EventArgse)
{
//Putusercodetoinitializethepagehere
}
#regionWebFormDesignergeneratedcode
overrideprotectedvoidOnInit(EventArgse)
{
//
//CODEGEN:ThiscallisrequiredbytheASP.NETWebFormDesigner.
//
InitializeComponent();
base.OnInit(e);
}
///<summary>
///RequiredmethodforDesignersupport-donotmodify
///thecontentsofthismethodwiththecodeeditor.
///</summary>
privatevoidInitializeComponent()
{
this.btnGet.Click+=newSystem.EventHandler(this.btnGet_Click);
this.btnGet2.Click+=newSystem.EventHandler(this.btnGet2_Click);
this.Load+=newSystem.EventHandler(this.Page_Load);
}
#endregion
privatevoidbtnGet_Click(objectsender,System.EventArgse)
{
WebRequestwreq=WebRequest.Create
("http://weather.yahoo.com/forecast/CHXX0037_c.html");
HttpWebResponsewresp=(HttpWebResponse)wreq.GetResponse();
stringHTML="";
Streams=wresp.GetResponseStream();
StreamReaderobjReader=newStreamReader(s);
stringsLine="";
inti=0;
while(sLine!=null)
{
i++;
sLine=objReader.ReadLine();
if(sLine!=null)
HTML+=sLine;
}
Stringtemp="";
intstart,stop;
start=HTML.IndexOf("<!--CURCON-->",0,HTML.Length);
stop=HTML.IndexOf("<!--ENDCURCON-->",0,HTML.Length);
temp=HTML.Substring(start,stop-start);
start=temp.IndexOf("<b>");
stop=temp.IndexOf("</b>");
stringdegree=temp.Substring(start+3,stop-start-3);
start=temp.IndexOf("<img");
stop=temp.IndexOf("</td>",start);
stringimg=temp.Substring(start,stop-start);
lblWeather.Text=degree+"<br>"+img;
}
privatevoidbtnGet2_Click(objectsender,System.EventArgse)
{
WebRequestwreq=WebRequest.Create
("http://cn.weather.yahoo.com/CHXX/CHXX0037/index_c.html");
HttpWebResponsewresp=(HttpWebResponse)wreq.GetResponse();
stringHTML="";
Streams=wresp.GetResponseStream();
StreamReaderobjReader=newStreamReader(s,System.Text.Encoding.GetEncoding("GB2312"));
stringsLine="";
inti=0;
while(sLine!=null)
{
i++;
sLine=objReader.ReadLine();
if(sLine!=null)
HTML+=sLine;
}
Stringtemp="";
intstart,stop;
start=HTML.IndexOf("<tableborder=0cellpadding=2
cellspacing=1bgcolor=9999ccwidth=\"85%\">",0,HTML.Length);
stop=HTML.IndexOf("</table>",start)+8;
temp=HTML.Substring(start,stop-start);
Weather2.Text=temp;
}
}
}请注明转自chinazhan中国站长
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了asp.net实现根据城市获取天气预报的方法。分享给大家供大家参考,具体如下:publicvoidGetWetheaerByCity(string
怎么用微信查询天气微信查天气预报指南怎么用微信查询天气微信查天气预报指南怎么用微信查询天气微信查天气预报指南怎么用微信查询天气微信查天气预报指南怎么用微信查询天
天气预报查询接口API,在这里我使用的是国家气象局天气预报接口使用较多的还有:新浪天气预报接口、百度天气预报接口、google天气接口、Yahoo天气接口等等。
天气预报APP开发的功能有: 1、天气预报功能 打开天气预报APP之后系统根据你的定位,直接显示当地地点天气情况,如气温,气压,降雨概率基本天气信息。 2
1、天气预报功能 打开天气预报APP之后系统根据你的定位,直接显示当地地点天气情况,如气温,气压,降雨概率基本天气信息。 2、天气雷达图 通过天气预报