Open webpage asp.net

1

I created a program where I have a form in vb and a web page in asp.net.

I wanted to know how to open the webpage by clicking on a button that is in the form of vb

    
asked by anonymous 20.04.2018 / 13:20

1 answer

1

With a little research you can easily figure out how to solve your problem, however here is an example:

System.Diagnostics.Process.Start("http://omeusite.com")
    
20.04.2018 / 15:36