try:System.Diagnostics.Process.Start("iexplore.exe","Your.htm");

解决方案 »

  1.   

    // url's are not considered documents. They can only be opened
                // by passing them as arguments.
                System.Diagnostics.Process.Start("IExplore.exe", "www.northwindtraders.com");
                
                // Start a Web page using a browser associated with .html and .asp files.
                System.Diagnostics.Process.Start("IExplore.exe", "myFile.htm");
                System.Diagnostics.Process.Start("IExplore.exe", "myFile.asp");