How do you launch an instance of IE from an app? Is it better practice to page to a window with and browser window?

link|improve this question

78% accept rate
feedback

4 Answers

up vote 8 down vote accepted

You can launch a URI in the browser using the WebBrowserTask.

Use it like this:

var wbt = new WebBrowserTask();
wbt.URL = "http://stackoverflow.com/";
wbt.Show();
link|improve this answer
Hi Sevki, I'll vote up both these since technically the same answer at the same time and both correct. Also another alternative which I'll add below for consideration even though not exactly what you've asked for. – Mick N Nov 10 '10 at 0:00
feedback

You need to use the WebBrowserTask:

WebBrowserTask browser = new WebBrowserTask();
browser.URL = "http://www.google.com";
browser.Show();
link|improve this answer
feedback

Just so you are aware, you can also embed a browser within your app using WebBrowser control.

It's there in the toolbox, just drag it on your page. You can navigate with code if you want like..

private void webBrowser1_Loaded(object sender, RoutedEventArgs e) {
    webBrowser1.Navigate(new Uri("http://www.bing.com/", UriKind.Absolute));
}
link|improve this answer
If you do this beware of the possible impact on back button behaviour. - If you use the webBrowser control full screen to mimic IE the back button won't navigate back through multiple web pages as it would in IE. – Matt Lacey Nov 10 '10 at 0:13
Thanks for clarifying that Matt. Yes WebBrowser and WebBrowserTask do not perform exactly the same functions. Sevki, if you decide to look into it further you will see how they differ. This isn't posted as a competing answer, rather to make you aware of all your options... then you can decide what works for your needs. – Mick N Nov 10 '10 at 3:23
I am aware of that. Here is my take on the issue there are pros and cons to both... you do have to do tombstoning when you redirect to an external instance and cannot display your custom controls, but the embedded version doens't have a Download proress changed event to show the progress of the web page download which leaves you with static(ironically) animation. I ended up going with embedded because it seemed more appropriate at this time. – Sevki Nov 10 '10 at 9:17
feedback

Matt and Oliver have already answered the question, but I was looking for this and thought some extra information would be helpful since I hate tracking down namespaces:

  • You have to have a reference to the Microsoft.Phone.dll (Automatic in Silverlight Apps)
  • You need to put using Microsoft.Phone.Tasks; at the top of your class (this is the namespace where the WebBrowserTask is declared).

Then you can use the code shown above, or use this slight variation:

WebBrowserTask task = new WebBrowserTask() { URL = "http://wirebear.com/blog" };
task.Show();

As long as you have handled tombstoning in your app, the user can just hit back to return which is usually the desired behavior. Another bonus is that the loading of the browser integrates really well in WP7 so that it actually looks like it's part of your app. The browser comes in with a turnstile animation and keeps your appBar showing for a moment then flips them to the browser icons - a very nice effect for just 2 lines of code!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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