tags:

views:

2048

answers:

3

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
A: 

i open a window in another page, how can we open it in same window. like a redirect.

A: 

just delete "_blank" on code that eric wrote

Mr.Prome