views:

402

answers:

3

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
Does this really reload the browser page? Doesn't sound like it does from the documented link.
AnthonyWJones
+1  A: 

You could try this::-

 HtmlPage.Window.Navigate(HtmlPage.Document.DocumentUri);
AnthonyWJones
A: 

I've always used:

HtmlPage.Document.Submit();
Dan Auclair