Asp.Net Static method to refresh page - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T22:37:47Z http://stackoverflow.com/feeds/question/192264 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/192264/asp-net-static-method-to-refresh-page 2 Asp.Net Static method to refresh page Miles 2008-10-10T17:02:42Z 2008-10-10T17:35:59Z <p>I have a page that is hitting a webservice every 5 seconds to update the information on the page. I'm using the DynamicPopulateExtender from the Ajax Control Toolkit to just populate a panel with some text.</p> <p>What I was wanting to do, is if a certain condition is met, to refresh the page completely. </p> <p>Am I going to be able to do this in the current method that I have? here's my current stuff:</p> <p><hr /></p> <p>ASP.NET</p> <pre><code>&lt;cc1:DynamicPopulateExtender ID="DynamicPopulateExtender1" runat="server" ClearContentsDuringUpdate="true" TargetControlID="panelQueue" BehaviorID="dp1" ServiceMethod="GetQueueTable" UpdatingCssClass="dynamicPopulate_Updating" /&gt; </code></pre> <p>Javascript</p> <pre><code>Sys.Application.add_load(function(){updateQueue();}); function updateQueue() { var queueShown = document.getElementById('&lt;%= hiddenFieldQueueShown.ClientID %&gt;').value; if(queueShown == 1) { var behavior = $find('dp1'); if (behavior) { behavior.populate(); setTimeout('updateQueue()', 5000); } } } </code></pre> <p>SERVER (C#)</p> <pre><code>[System.Web.Services.WebMethod] [System.Web.Script.Services.ScriptMethod] public static string GetQueueTable() { System.Text.StringBuilder builder = new System.Text.StringBuilder(); try { // do stuff } catch (Exception ex) { // do stuff } return builder.ToString(); } </code></pre> http://stackoverflow.com/questions/192264/asp-net-static-method-to-refresh-page/192316#192316 4 Answer by Jason Kealey for Asp.Net Static method to refresh page Jason Kealey 2008-10-10T17:20:09Z 2008-10-10T17:20:09Z <ul> <li>You can't do anything from your ASMX.</li> <li>You can refresh the page from JavaScript by using a conventional page reload or by doing a postback that would perform server-side changes and then update via your UpdatePanel or, more simply, a Response.Redirect. </li> </ul> http://stackoverflow.com/questions/192264/asp-net-static-method-to-refresh-page/192393#192393 1 Answer by Alfred B. Thordarson for Asp.Net Static method to refresh page Alfred B. Thordarson 2008-10-10T17:35:59Z 2008-10-10T17:35:59Z <p>You can force a Postback from Javascript, see this Default.aspx page for a example:</p> <p><hr /></p> <h2>Default.aspx</h2> <pre><code>&lt;html xmlns="http://www.w3.org/1999/xhtml" &gt; &lt;head runat="server"&gt; &lt;title&gt;Untitled Page&lt;/title&gt; &lt;script type="text/javascript" language="javascript"&gt; function forcePostback() { &lt;%=getPostBackJavscriptCode()%&gt;; } &lt;/script&gt; &lt;/head&gt; &lt;body onload="javascript:forcePostback()"&gt; &lt;form id="form1" runat="server"&gt; &lt;div&gt; &lt;asp:Label ID="Label1" runat="server" Text="Postbacking right now..."&gt;&lt;/asp:Label&gt; &lt;/div&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p><hr /></p> <h2>Default.aspx.cs</h2> <pre><code>namespace ForcingApostback { public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { if (IsPostBack) Label1.Text = "Done postbacking!!!"; } protected string getPostBackJavscriptCode() { return ClientScript.GetPostBackEventReference(this, null); } } } </code></pre> <p>On the client-side, under any condition, you could then call the forcePostback() Javscript function to force the Postback.</p> <p>Hope this helps.</p>