How can I use LinkButton
Visual Basic
2
Posts
2
Posters
0
Views
1
Watching
-
-
I want to use a LinkButton because i want when it have been clicked do somthing and i want when it have been right clicked and press Open in new window a new page appears but i don't know how can i open new window. Please help me. Thanks in advance.
In the code for your LinkButton type:
Process.Start("http://www.example.com")
. This will open a new tab/window in your default browser.
Trinity: Neo... nobody has ever done this before. Neo: That's why it's going to work.