Can Silverlight initiate Page Refreshes? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T05:26:55Zhttp://stackoverflow.com/feeds/question/552756http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/552756/can-silverlight-initiate-page-refreshes3Can Silverlight initiate Page Refreshes?Scott Ferguson2009-02-16T09:38:21Z2009-11-03T00:04:40Z
<p>UPDATE: An alternative title for this could be: How do I call javascript from my silverlight 2.0 application.</p>
<p>Here is a quick question for all you Silverlight gurus.</p>
<p>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.</p>
<p>Is this possible?</p>
<p>If so, any chance of a code snippet? </p>
http://stackoverflow.com/questions/552756/can-silverlight-initiate-page-refreshes/552772#5527721Answer by Blounty for Can Silverlight initiate Page Refreshes?Blounty2009-02-16T09:45:47Z2009-02-16T09:45:47Z<p>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!</p>
http://stackoverflow.com/questions/552756/can-silverlight-initiate-page-refreshes/552998#5529984Answer by Patrick McDonald for Can Silverlight initiate Page Refreshes?Patrick McDonald2009-02-16T11:23:33Z2009-05-21T11:07:29Z<p><a href="http://timheuer.com/blog/archive/2008/03/09/calling-javascript-functions-from-silverlight-2.aspx" rel="nofollow">Apparently</a> you can call a JS script from Silverlight using </p>
<pre><code>HtmlPage.Window.CreateInstance
</code></pre>
<p>or</p>
<pre><code>HtmlPage.Window.Invoke
</code></pre>
<p>The JavaScript to <a href="http://www.quackit.com/javascript/javascript%5Frefresh%5Fpage.cfm" rel="nofollow">refresh</a> a page is</p>
<pre><code>location.reload(true)
</code></pre>
<p>I'm not a Silverlight or JavaScript expert though, so not sure if it works in all browsers, or even at all.</p>
<p><strong>EDIT:</strong></p>
<p>Scott posted a comment to this answer with his final solution.</p>
<p>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: </p>
<pre><code>HtmlPage.Window.Invoke("reload");
</code></pre>
http://stackoverflow.com/questions/552756/can-silverlight-initiate-page-refreshes/1011394#10113941Answer by R4cOON for Can Silverlight initiate Page Refreshes?R4cOON2009-06-18T08:08:18Z2009-06-18T08:08:18Z<p>Why not simply stay on the Silverlight side and call </p>
<pre><code>System.Windows.Browser.HtmlPage.Document.Submit();
</code></pre>
<p>Works a treat for me. The whole page gets reloaded and the Silverlight control kicks backs in.</p>
http://stackoverflow.com/questions/552756/can-silverlight-initiate-page-refreshes/1313224#13132241Answer by Will for Can Silverlight initiate Page Refreshes?Will2009-08-21T17:24:53Z2009-08-21T17:24:53Z<p>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!</p>
<p><a href="http://www.meanbyte.com/thelockerroom/post/2009/06/25/Reloading-a-SilverLight-control-without-full-PostBack.aspx" rel="nofollow">http://www.meanbyte.com/thelockerroom/post/2009/06/25/Reloading-a-SilverLight-control-without-full-PostBack.aspx</a></p>
<p>Will</p>
http://stackoverflow.com/questions/552756/can-silverlight-initiate-page-refreshes/1664492#16644921Answer by Jesse for Can Silverlight initiate Page Refreshes?Jesse2009-11-03T00:04:40Z2009-11-03T00:04:40Z<p>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. </p>
<p>this.ContentFrame.Navigate(new Uri("", UriKind.Relative));</p>
<p>In this case I was on my home page. "" means home page if you examine the Silverlight templated navigation solution.</p>