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
You can use InvokeScript to get title as,
String title = browser.InvokeScript("document.title");
I don't know it's correct or not but you can try window.title too.