Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to launch IE7 from a Windows Phone App?

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

like image 893
Sevki Avatar asked Nov 09 '10 20:11

Sevki


People also ask

What has replaced Internet Explorer?

With improved security, privacy, speed, and ease of use, Microsoft Edge surpasses the experience you've come to know with Internet Explorer. When you make the switch to Microsoft Edge, we'll automatically import your favorites, preferences, and other browsing data from Internet Explorer.

How do I open Internet Explorer instead of edge?

To use Internet Explorer Mode in Edge, launch Edge and click the “Ellipses” button in the top-right corner of the window. In the drop-down menu that appears, select “Settings.” Next, click “Default Browser” in the left-hand pane. You'll now be on the Default Browser Settings screen.

What is replacing Internet Explorer 11?

Internet Explorer Web browser will be officially retired on June 15, 2022, Microsoft has announced. The company will replace Internet Explorer 11 with Microsoft Edge.


1 Answers

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();
like image 165
Matt Lacey Avatar answered Oct 07 '22 00:10

Matt Lacey