I am using WebBrowser in my xaml.
<phone:WebBrowser x:Name="webView1" Width="480"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
VerticalContentAlignment="Center"
HorizontalContentAlignment="Center"
IsScriptEnabled="True" />
and in the cs file I have coded as,
webView1.Navigate(new Uri(url));
This page is being loaded in my app.But there is a hyperlink in this webPage,which is not working.