You will need to use the WebBrowser task to open a web page in Internet Explorer.
Add the following statement:
using Microsoft.Phone.Tasks;
Then you can use Task in a function like below:
WebBrowserTask task = new WebBrowserTask();
task.URL = "http://www.stackoverflow.com";
task.Show();
Hope this helps!
source
share