Loading
0

C#实现电脑默认浏览器打开某Url网址

技术小学生微信公众号
腾讯云服务器大促销。
华为服务器
前言:C#如何实现默认浏览器打开某网站?c#打开某网址url的方法,有时候需要实现默认浏览器打开某网址,可以参考如下方法实现。
public void OpenUrl(string target)
        {
            //new register open the new url using browser 
            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);
            }
        }


 
技术小学生微信公众号
华为服务器
腾讯云服务器大促销。

声明:站长码字很辛苦啊,转载时请保留本声明及附带文章链接:https://blog.tag.gg/showinfo-23-36052-0.html
亲爱的:若该文章解决了您的问题,可否收藏+评论+分享呢?
上一篇:c#代码实现修改系统的默认打印机方法
下一篇:C# 实现弹出多个选择窗体窗口并传回值