tags:

views:

89

answers:

1

How i can call one web page in VB.net when Press CLICK EVENT.???

+1  A: 

Is this in WindowsForm? If so:

System.Diagnostics.Process.Start("http://www.url.com/")

...Which will launch a url in the default web browser.

baeltazor