How can I go to specific URL programmatically in Silverlight?
Asked
Active
Viewed 3,518 times
1 Answers
13
Depending on what you mean, most likely like this:
System.Windows.Browser.HtmlPage.Window.Navigate("url");

Ken Smith
- 20,305
- 15
- 100
- 147
-
4That's close, its `HtmlPage.Window.Navigate` – AnthonyWJones Oct 15 '10 at 20:09
-
Whoops, you're right. Sorry. http://msdn.microsoft.com/en-us/library/cc190502(VS.95).aspx – Ken Smith Oct 15 '10 at 23:52