How to open in default browser with URL in C#

1 Answer

0 votes
using System;
using System.Diagnostics;
using System.Windows.Forms;

namespace workingframe
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        private void open_browser_Click(object sender, EventArgs e)
        {
            Process.Start("http://collectivesolver.com");
        }
    }
}

 



answered Mar 14, 2016 by avibootz

Related questions

1 answer 196 views
1 answer 202 views
1 answer 249 views
249 views asked Jan 22, 2015 by avibootz
1 answer 238 views
1 answer 278 views
...