Hello,

I was looking for how to simply use the browser of the phone to jump to a link from my application.

I found what seems to be used in c# which looks reasonable:

http://forums.silverlight.net/t/163160.aspx/1
Code:
System.Windows.Browser.HtmlPage.Window.Navigate(FullNaviagteURI)
I just want to know how to do this in VB.net, the reason I am not using a hyperlinkButton is because I am binding some titles and they don't fit on one line and the hyperlinkButton cannot wrap text so I need to do this on tap in code

Please advise