vote up 3 vote down star

UPDATE: An alternative title for this could be: How do I call javascript from my silverlight 2.0 application.

Here is a quick question for all you Silverlight gurus.

I have a Silverlight app that displays a stopwatch countdown. The app is hosted in an ASP.Net web application, What I want it to do is when the stopwatch hits zero, the app forces a server page refresh of the hosting page.

Is this possible?

If so, any chance of a code snippet?

flag

5 Answers

vote up 4 vote down check

Apparently you can call a JS script from Silverlight using

HtmlPage.Window.CreateInstance

or

HtmlPage.Window.Invoke

The JavaScript to refresh a page is

location.reload(true)

I'm not a Silverlight or JavaScript expert though, so not sure if it works in all browsers, or even at all.

EDIT:

Scott posted a comment to this answer with his final solution.

He needed to create a JavaScript client function on the ASP.Net page called reload() that did the location.reload(true). Then it was a simple matter from his C# code to reload:

HtmlPage.Window.Invoke("reload");
link|flag
HtmlPage.Window.Invoke("location.reload(true);"); didn't work for me after all. When I find out exactly what does, I'll post it here. thanks anyway. – Scott Ferguson May 21 at 9:27
ok, this was 90% of the way there. All I needed was to create a javascript client function on the ASP.Net page in my case, called reload(), that did the location.reload(true). Then it was a simple matter from my C# code to have this line: HtmlPage.Window.Invoke("reload"); Thanks again. – Scott Ferguson May 21 at 9:42
nice one, I'll update my answer to include this new info – Patrick McDonald May 21 at 11:03
vote up 1 vote down

It is possible for a silverlight app to call out into javascript on the page which in turn could force your page refresh. So yes this is definitely possible!

link|flag
vote up 1 vote down

Why not simply stay on the Silverlight side and call

System.Windows.Browser.HtmlPage.Document.Submit();

Works a treat for me. The whole page gets reloaded and the Silverlight control kicks backs in.

link|flag
This was exactly the sort of thing I was looking for. I'll check it out soon, and +1 your answer if it works the way I was expecting. Thanks! – Scott Ferguson Jun 18 at 23:51
This works fine locally but doesn't work on the server. – ThePower Dec 1 at 20:11
What do you mean? Of course it won't work on the server, Silverlight is on the client side! Do you mean you want to restart your web server from the client? – R4cOON Dec 4 at 9:44
vote up 1 vote down

Here is a step by step walkthrough I wrote. Check it out. Feel free to check out the other articles and follow us on twitter!

http://www.meanbyte.com/thelockerroom/post/2009/06/25/Reloading-a-SilverLight-control-without-full-PostBack.aspx

Will

link|flag
vote up 1 vote down

In my case I didn't want to do asp.net kind of postback and lose my Silverlight page context so I refreshed my page by navigating to it. That way my language changes I made in my nav bar were reflected on my page or View as they come in 2008 template.

this.ContentFrame.Navigate(new Uri("", UriKind.Relative));

In this case I was on my home page. "" means home page if you examine the Silverlight templated navigation solution.

link|flag

Your Answer

Get an OpenID
or

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