一般网页通过以下方法都可以获取
WebClient Client = new WebClient(); 
    Stream strm = Client.OpenRead(URL); 
    StreamReader sr = new StreamReader(strm, Encoding.Default); 
    txtCode.Text = sr.ReadToEnd(); 
    sr.Close(); 
    strm.Close();然而获取当当网页代码的时候里面的“内容简介”等获取不到,不知道什么原因在此高分请教。比如,当当一图书地址是:
http://product.dangdang.com/product.aspx?product_id=20904727