How can I get the page title in a WebBrowser control when I navigate to different websites?
xmlns
xmlns:phone=\"clr-namespace:Microsoft.Phone.Contr
All answers are not 100% correct:
You must call the following:
String title = (string)browser.InvokeScript("eval", "document.title.toString()");
in the LoadCompleted event of the browser, and not in the navigated event.