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?
I've always used:
namespace for refresh page :
using System.Windows.Browser;
code: give this code inside ur button click..
HtmlPage.Document.Submit();
You could try this::-
HtmlPage.Window.Navigate(HtmlPage.Document.DocumentUri);
Yes. You can use the NavigationService.Refresh method to reload the page.
http://www.divelements.com/silverlight/tools.aspx
Refer to the link above.
Use:
htmlHost.Document.Submit();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With