views:

38

answers:

1

How can I go to specific URL programmatically in Silverlight?

+3  A: 

Depending on what you mean, most likely like this:

System.Windows.Browser.HtmlPage.Window.Navigate("url");
Ken Smith
That's close, its `HtmlPage.Window.Navigate`
AnthonyWJones
Whoops, you're right. Sorry. http://msdn.microsoft.com/en-us/library/cc190502(VS.95).aspx
Ken Smith
It worked, thanks!
Sergey