private void button2_Click(object sender, EventArgs e)
{
Process.Start("http://google.com");
}
for example, then when clicked again it has a chance of opening like yahoo or even google again. tried
private void button2_Click(object sender, EventArgs e)
{
Process.Start("http://google.com");
Process.Start("http://yahoo.com");
Process.Start("http://stackoverflow.com");
}
but that opens up all 3 sites at the same time in my default browser I want it to open 1 out of those 3 sites randomly each time the button is clicked.