private void textureWeb_Navigating(object sender, WebBrowserNavigatingEventArgs e)
{
newURL = e.Url.LocalPath.ToString();
}
private void textureWeb_NewWindow(object sender, CancelEventArgs e)
{
e.Cancel = true;
textureWeb.Navigate(newURL.ToString());
}
but for some reason, the newURL variable is set to an ad. As in, when I click on an image that would normally open IE, would now open JUST the add bar from google. Why is this?
btw, the website I am using is textureking.


Ask A New Question
Reply




MultiQuote








|