In Silverlight how can I launch / navigate to another page?
+5
A:
System.Windows.Browser.HtmlPage.Window.Navigate(
new Uri( "http://www.google.com" ),
"_blank"
);
You can leave out the target ("_blank") if you just want to navigate within your current browser window.
Eric
2008-10-24 21:03:22