System.Net .WebClient  wc=new WebClient ();
wc.DownloadData (url);

解决方案 »

  1.   

    HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://rose/test/aspx/asp1.aspx");
    StreamReader sr = new StreamReader(request.GetResponse().GetResponseStream());
    Console.WriteLine(sr.ReadToEnd());
    sr.Close();
    http://rose/test/aspx/asp1.aspx就是想要请求的网页的URL。
      

  2.   

    http://expert.csdn.net/Expert/topic/2391/2391158.xml?temp=.9623682
      

  3.   

    提交表单 -> ASP.NET程序写一个本地消息队列(MSMQ) -> 你写个Windows服务来处理消息
    或者用文件也可以,.NET有监控文件/文件夹改动的类的