HomeWindowsLaunching a Web Browser from Windows Phone 7 App

Launching a Web Browser from Windows Phone 7 App

The WebBrowserTask allows an Windows Phone 7 App to launch the web browser. This class is defined in Microsoft.Phone.Tasks namespace .

Using Microsoft.Phone.Tasks;

The WebBrowserTask includes a property “URL” that gets or sets the URL that should be navigated to when the web browser is launched.

private void button1_Click(object sender, RoutedEventArgs e)
{
      WebBrowserTask webbrowser = new WebBrowserTask();
      webbrowser.URL = "www.developerpublish.com";
      webbrowser.Show();
}

The webbrowser should be launched and the URL will be navigated to the specified URL when the Show method of the Web Browser is called .

    1 Comment

  1. Dattaswarup S
    December 13, 2011
    Reply

    webbrowser.URL is obsolete , please use Uri

Leave a Reply

You May Also Like

This blog post will guide you through several effective methods to troubleshoot and resolve the issue of Microsoft Edge not...
Windows 11 offers a range of audio enhancements that can enrich your listening experience. These enhancements include features like virtual...
Windows 11 brings a fresh and visually stunning design to your desktop, and one of the standout features is the...