一种是直接访问服务器的URL,比如:http://www.google.com
一种是打开本地的一个html文件,比如: c:\a.html

解决方案 »

  1.   

    Process.Start("IExplore.exe", "http://www.*****.com/Xxx.asp");
      

  2.   

    我需要的使嵌入到Form中,如何解决?
      

  3.   

    1.在工具箱里添加Microsoft Web Browse;
    2.添加该控件到winform窗体;
    3.使用:
       string url="sports.sohu.com";
       axWebBrowser1.Navigate(url);
      

  4.   

    private AxSHDocVw.AxWebBrowser axWebBrowser1;
    axWebBrowser1.Navigate("http://www.google.com/", ref n, ref n,ref n,ref n);private void axWebBrowser1_DocumentComplete(object sender, AxSHDocVw.DWebBrowserEvents2_DocumentCompleteEvent e)
    {
     //這裡面可以操作那個網站,一般寫的自動注冊就這麼做的:)
    }