How can I get the page title in a WebBrowser control when I navigate to different websites?


xmlns

xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"

Properties starting with D

DataContext
DesiredSize
Dispatcher
DoubleTap

xaml tag

<phone:WebBrowser Name="browser" Height="760" VerticalAlignment="Top"></phone:WebBrowser>
link|improve this question

feedback

4 Answers

For me the following code works. The answers from @Akash and @Mikko set me on the right path, but I still had some problems with a few websites. The problem as I understand it is that the Navigated event is raised when the WebBrowser component starts getting data from the remote server. As such the DOM object is not yet complete, so calling the document.title throws an error. So I just retry after a few milliseconds till I get the title. This "loop" has never iterated more than 3 times on any website I tested and flawlessly brought me the title every time.

private void webBrowser1_Navigated(object sender, System.Windows.Navigation.NavigationEventArgs e)
{
    ThreadPool.QueueUserWorkItem(UpdateText);
}

private void UpdateText(object o)
{
    Thread.Sleep(100);
    Dispatcher.BeginInvoke(() =>
    {
        try
        {
            textBlock1.Text = webBrowser1.InvokeScript("eval", "document.title").ToString();
        }
        catch (SystemException)
        {
            ThreadPool.QueueUserWorkItem(UpdateText);
        }
    });
}
link|improve this answer
feedback

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.

link|improve this answer
I tried on LoadCompleted event and it thrown an unknown exception. – BrunoLM Oct 8 '11 at 21:41
You must enable scripting as per msdn documentation and also this method can only be called after document was loaded so you must wait for sometime if document is not ready. – Akash Kava Oct 9 '11 at 5:30
I tried calling this when receiving the Navigated event and get an exception that reads "Error: 80020006". And yes, I have IsScriptEnabled="True" in my XAML. – tronman Nov 14 '11 at 18:11
feedback

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()");
link|improve this answer
feedback

I'm pretty sure that

String title = browser.Document.Title;

should do the trick.

See here.

link|improve this answer
Properties starting with D: DataContext, DesiredSize, Dispatcher, DoubleTap. (Microsoft.Phone.Controls). xaml tag: <phone:WebBrowser Name="browser" Height="760" VerticalAlignment="Top"></phone:WebBrowser> – BrunoLM Oct 8 '11 at 21:41
Sorry, was thinking of the regular Forms WebBrowser control. Have you tried @Akash Kava's answer but with the IsScriptEnabled property set to true? – Sid Holland Oct 8 '11 at 21:58
yes, same result... – BrunoLM Oct 8 '11 at 23:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.