Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
I prefer adding parameter to url query: stackoverflow.com/questions/1722615/… – Rover Aug 6 '12 at 13:55

5 Answers

I've always used:

namespace for refresh page :

using System.Windows.Browser;

code: give this code inside ur button click..

HtmlPage.Document.Submit();
share|improve this answer
3  
This works in IE, Firefox and Chrome. – Travis Pettijohn May 6 '11 at 15:14
Didn't work for me... :( Silverlight 4.0 on Windows7 x64 on either IE9 or Chrome 24 – m1m1k Jan 19 at 1:57

You could try this::-

 HtmlPage.Window.Navigate(HtmlPage.Document.DocumentUri);
share|improve this answer
1  
This worked in Firefox, but not IE or Chrome. – Travis Pettijohn May 6 '11 at 15:14
@Travis: That might be related to caching so modifying the cache headers sent by the server might help. – AnthonyWJones May 6 '11 at 19:42

Yes. You can use the NavigationService.Refresh method to reload the page.

share|improve this answer
Does this really reload the browser page? Doesn't sound like it does from the documented link. – AnthonyWJones Apr 30 '10 at 13:02

http://www.divelements.com/silverlight/tools.aspx

Refer to the link above.

Use:

htmlHost.Document.Submit();
share|improve this answer

I use

System.Windows.Browser.HtmlPage.Document.Submit();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.