개인 무효 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 = 새로운 StreamReader(s,System.Text.Encoding.GetEncoding("GB2312"));
문자열 sLine = "";
int i = 0;
동안(sLine!=null)
{
나++;
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>";
시작 = HTML.IndexOf(aa,0,HTML.Length);
stop = HTML.IndexOf("</table>",start)+8;
temp = HTML.Substring(시작, 중지 - 시작);
this.Weather2.Text=온도;
string 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 클래스="temps">";
int aa2 =temp.IndexOf(ee,0,temp.Length);
int bb1=temp.IndexOf("</td>",aa2);
this.Label1.Text=temp.Substring(aa2, bb1 - aa2).ToString();
// 此处放置用户代码以初始化页면
}