desmondtan
Freshman
- Joined
- Dec 24, 2002
- Messages
- 40
Does anyone knows how to open a HTML page in browser when user click a button ?
Private Sub btnLaunch_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnLaunch.Click
System.Diagnostics.Process.Start("iexplore.exe", "http://www.google.com")
End Sub
System.Diagnostics.Process.Start("http://www.google.com")
System.Diagnostics.Process.Start("c:\test.bat")