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
I had the same problem. @Akash Kava's answer is almost correct but this is the correct javascript to read the html title:
String title = (string)browser.InvokeScript("eval", "document.title.toString()");