C#调用浏览器是如何实现的呢?我们在实际的开发过程中会遇到这样的需求,那么来实现C#调用浏览器会用到什么方法呢?这里向你介绍了调用IE以及默认浏览器的具体操作。
C#调用浏览器之调用IE:
- System.Diagnostics.Process myProcess = new System.Diagnostics.Process();
- myProcess.StartInfo.FileName = "iexplore.exe";
- myProcess.StartInfo.Arguments = " http://www.net0and1.com/";
- myProcess.Start();
C#调用浏览器之调用默认浏览器:
- string target= "http://www.net0and1.com";
- //Use no more than one assignment when you test this code.
- //string target = "ftp://ftp.microsoft.com";
- //string target = "C:\\Program Files\\Microsoft Visual Studio\\INSTALL.HTM";
- try
- {
- System.Diagnostics.Process.Start(target);
- }
- catch
- (
- System.ComponentModel.Win32Exception noBrowser)
- {
- if (noBrowser.ErrorCode==-2147467259)
- MessageBox.Show(noBrowser.Message);
- }
- catch (System.Exception other)
- {
- MessageBox.Show(other.Message);
- }
C#调用浏览器的操作就向你介绍到这里,希望对你了解和学习使用C#调用浏览器有所帮助。
当前名称:C#调用浏览器的功能实现浅析
分享URL:http://www.csdahua.cn/qtweb/news32/329032.html
网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 快上网