|
this.Command1.Click += new System.EventHandler(this.Command1_Click);
this.Load += new System.EventHandler(this.Page_Load);

}
#endregion

private void Command1_Click(object sender, System.EventArgs e)
 ...{
string city = s_weather.Selection.Value.Trim();
int start,stop;
string weather1,weather2,wea;
string wea_city = weather_city(city);
wea_city = wea_city.Replace(" ","");

start = wea_city.IndexOf("<b>",0,wea_city.Length);
stop = wea_city.IndexOf("</b>", start);
weather1 = wea_city.Substring(start, stop-start).Trim() + " ";
weather1 = weather1.Substring(3,8).Trim();

start = wea_city.IndexOf("<tdstyle="font-size:40px;font-family:TimesNewRoman;font-weight:bold;">",0,wea_city.Length);
stop = wea_city.IndexOf("℃",start) + 40;
weather2 = wea_city.Substring(start, stop-start);
weather2 = weather2.Substring(stop-start-42,40).Trim();
weather2 = weather2.Replace(" ","");

start = wea_city.IndexOf("<fontcolor=#183888><b>", 0, wea_city.Length);
stop = wea_city.IndexOf("</b></font>",start);
wea = wea_city.Substring(start,stop-start);
wea = wea.Substring(22,wea.Length-22) + "kbrk";
wea = wea.Replace(" ", "");
wea = wea.Replace(">", "k");
wea = wea.Replace("<", "k");
上一页 [1] [2] [3] [4] [5] [6] [7] [8] 下一页
|