private void Page_Load(オブジェクト送信者、System.EventArgs e)
{
WebRequest wreq=WebRequest.Create(" http://weather.yahoo.com/forecast/CHXX0133_c.html ");
HttpWebResponse wresp=(HttpWebResponse)wreq.GetResponse();
文字列HTML ="";
ストリーム s=wresp.GetResponseStream();
StreamReader objReader = new StreamReader(s,System.Text.Encoding.GetEncoding("GB2312"));
文字列 sLine = "";
int i = 0;
while (sLine!=null)
{
i++;
sLine = objReader.ReadLine();
if (sLine!=null)
HTML += sLine;
}
文字列温度 = "";
int 開始、停止;
// string aa="<div class="5 日間の予報の夜" style="border:none;">";
//string aa="<div class="5 日間予報" style="border:none;">";
string aa="<table><th>今日</th>";
start = HTML.IndexOf(aa,0,HTML.Length);
stop = HTML.IndexOf("</table>",start)+8;
temp = HTML.Substring(開始, 停止 - 開始);
this.Weather2.Text=temp;
文字列 cc="<tr class="titles"><td>";
//
int aa1 =temp.IndexOf(cc,0,temp.Length);
int bb=temp.IndexOf("</td>",aa1);
this.Weather2.Text=temp.Substring(aa1, bb - aa1).ToString();
文字列 ee="<tr class="temps">";
int aa2 =temp.IndexOf(ee,0,temp.Length);
int bb1=temp.IndexOf("</td>",aa2);
this.Label1.Text=temp.Substring(aa2, bb1 - aa2).ToString();
// ここに放置用户代コードによる初期化页面
}