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
2010-10-15 16:11:35
That's close, its `HtmlPage.Window.Navigate`
AnthonyWJones
2010-10-15 20:09:15
Whoops, you're right. Sorry. http://msdn.microsoft.com/en-us/library/cc190502(VS.95).aspx
Ken Smith
2010-10-15 23:52:08
It worked, thanks!
Sergey
2010-10-21 10:34:34