通过httpwebrequeat,webclient获取页面信息,再用正则获取相关信息
WebRequest Wrq = WebRequest.Create("");
 WebResponse Wrs = Wrq.GetResponse();
Stream strm = Wrs.GetResponseStream();
StreamReader sr = new StreamReader(strm, System.Text.Encoding.GetEncoding("UTF-8"));
string str= sr.ReadToEnd();
string Pattern = ";
MatchCollection Matches = Regex.Matches(str, Pattern, RegexOptions.IgnoreCase | RegexOptions.Compiled);
                foreach (Match NextMatch in Matches)
                {
                    string s= NextMatch.Groups["0"].Value.ToString().Trim();
                }
http://topic.csdn.net/u/20090815/09/18bb26a5-7963-4e34-8a18-b76f4862946a.html