C#调用浏览器的功能实现浅析

C#调用浏览器是如何实现的呢?我们在实际的开发过程中会遇到这样的需求,那么来实现C#调用浏览器会用到什么方法呢?这里向你介绍了调用IE以及默认浏览器的具体操作。

C#调用浏览器之调用IE:

 
 
 
  1. System.Diagnostics.Process myProcess = new System.Diagnostics.Process(); 
  2. myProcess.StartInfo.FileName = "iexplore.exe";
  3. myProcess.StartInfo.Arguments = " http://www.net0and1.com/";
  4. myProcess.Start();

C#调用浏览器之调用默认浏览器:

 
 
 
  1. string target= "http://www.net0and1.com"; 
  2. //Use no more than one assignment when you test this code.
  3. //string target = "ftp://ftp.microsoft.com"; 
  4. //string target = "C:\\Program Files\\Microsoft Visual Studio\\INSTALL.HTM";
  5. try
  6. {
  7.  System.Diagnostics.Process.Start(target);
  8. }
  9. catch
  10. (
  11.  System.ComponentModel.Win32Exception noBrowser)
  12. {
  13.  if (noBrowser.ErrorCode==-2147467259)
  14.   MessageBox.Show(noBrowser.Message);
  15. }
  16. catch (System.Exception other)
  17. {
  18.   MessageBox.Show(other.Message);
  19. }

C#调用浏览器的操作就向你介绍到这里,希望对你了解和学习使用C#调用浏览器有所帮助。

当前名称:C#调用浏览器的功能实现浅析
分享URL:http://www.csdahua.cn/qtweb/news32/329032.html

网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 快上网