System.Net.WebClient w = new WebClient();
System.IO.Stream stream = w.OpenRead("http://www.sina.com.cn");
System.IO.StreamReader sr = new System.IO.StreamReader(stream,System.Text.Encoding.Default);
string s = sr.ReadToEnd();
sr.Close();
stream.Close();
System.Text.RegularExpressions.Regex regex = new System.Text.RegularExpressions.Regex(@"[\r\n\t]");
s = regex.Replace(s,"");
System.Text.RegularExpressions.Regex regex1 = new System.Text.RegularExpressions.Regex(@"<!---此部分为新浪首页要闻区内容---->(?<main>.*)<!---此部分为新浪首页要闻区内容 end---->");
this.Label1.Text = regex1.Match(s).Groups["main"].Value;