To open a webpage in your system’s default web browser, when you click a
button in your form, write the following code in your button click
event:
- Dim sURL as String = "http://www.dotnetblogger.info"
- Process.Start(sURL)
The above piece of code will lauch the web page as specified with the default browser.
No comments:
Post a Comment