System.Diagnostics.Process.Start("http://www.***.com/....");
打开的,我想也可以像上面一样打开,可以好像不行,呵呵.

解决方案 »

  1.   

    Process myProcess = new Process();
    myProcess.StartInfo.FileName = "www.***.com/...";
    myProcess.StartInfo.CreateNoWindow = false;
    myProcess.Start();
    刚才的可以用这个方法打开,我自己一边学一边过来看,没有人回复?
      

  2.   

    get url or  xml ?use httpRequest and HttpResponse to do
      

  3.   

    System.Xml.XmlDocument oxml;
    oxml=new System.Xml.XmlDocument();
    oxml.Load("www.****.com/test/down.asp");
    就可以了,注意:DOWN.asp必须是一个XML格式的HTML文件。
      

  4.   

    System.Net.WebClient mWebClient=new System.Net.WebClient();
    byte[] mBytes=mWebClient.DownloadData("http://localhost/Learn/WSHello/wServiceOne.asmx/HelloWorld");
    string mStr=System.Text.Encoding.Default.GetString(mBytes);
    MessageBox.Show(mStr);
      

  5.   

    httpRequest & HttpResponse
    可以将页面拖回来