The architecture is like:
On click of a button an HTML page opens which contains a link in it. On clicking the links I want to open it in external (default) browser of W
Normally, you would do so using Target property on tag. But, in WP7 (at least in Emulator), this does not work.
What you could do is intercept using Navigating event something like following:
void WebBrowser1_Navigating(object sender, NavigatingEventArgs e)
{
if (IsSupposedToOpenInPhoneBrowser(e.Uri))
{
e.Cancel = true;
WebBrowserTask task = new WebBrowserTask();
task.URL = e.Uri.ToString();
task.Show();
}
}