Is it just me? or am I doing something wrong?
c_wbFavouriteA is a WebBrowser control
if in my code I do this at some stage.....
and later do this....Code:System.Uri siteUri = new System.Uri("http://www.yahoo.com"); c_wbFavouriteA.Stop(); c_wbFavouriteA.Navigate(siteUri);
Google doesn't load into the control.Code:System.Uri siteUri = new System.Uri("http://www.google.com"); c_wbFavouriteA.Stop(); c_wbFavouriteA.Navigate(siteUri);
Am I doing something wrong? or might there be something wrong with my .NET installation?


Reply With Quote