Using Silver 4, I have a webbrowser control that I set to a web site thru code: e.g. webBrowser.Navigate("http://stackoverflow.com/questions/ask"); This brings up a web page just fine. It works fine also when I click on a hyperlink and go to another page.
I was expecting that I could find the URL of the new page thru the LoadCompleted event. Specifically in the System.Windows.Navigation.NavigationEventArgs e parameter. However, that comes back null. The Source.AbsoluteUri on the webbrowser remains the same.
But here is the strange thing! If I go to the webbrowser pane and right click on it, a property page is displayed with the current URL.
I must be missing something...