Is there a way to reload the browser page from within Silverlight? i.e. have the same effect as a user clicking the reload button?
+1
A:
Yes. You can use the NavigationService.Refresh method to reload the page.
Rune Grimstad
2010-04-30 12:41:57
Does this really reload the browser page? Doesn't sound like it does from the documented link.
AnthonyWJones
2010-04-30 13:02:02
+1
A:
You could try this::-
HtmlPage.Window.Navigate(HtmlPage.Document.DocumentUri);
AnthonyWJones
2010-04-30 13:09:58