View Single Post
  #1 (permalink)  
Old 05-12-2007, 05:22 PM
Skel Skel is offline
Learning Programmer
 
Join Date: May 2007
Posts: 30
Rep Power: 6
Skel is on a distinguished road
Default Stop Redirection.

Well i need a bit of code that stops redirection please. I have a link that is redirected by javascript and i need to stop it redirecting. I talked to someone and they told me to add this:

Code:
private void webBrowser1_Navigating(object sender, WebBrowserNavigatingEventArgs e)
        {
            if (e.Url = "http://www.runescape.com")
            {
                e.Cancel = true;
            }
        }
I tried adding it, but it came up with an error. Any help please?

Thanks.

Last edited by Skel; 05-13-2007 at 06:39 AM.
Reply With Quote

Sponsored Links