Asp.Net Static method to refresh page - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T22:37:47Zhttp://stackoverflow.com/feeds/question/192264http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/192264/asp-net-static-method-to-refresh-page2Asp.Net Static method to refresh pageMiles2008-10-10T17:02:42Z2008-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><cc1:DynamicPopulateExtender ID="DynamicPopulateExtender1" runat="server"
ClearContentsDuringUpdate="true" TargetControlID="panelQueue" BehaviorID="dp1"
ServiceMethod="GetQueueTable" UpdatingCssClass="dynamicPopulate_Updating" />
</code></pre>
<p>Javascript</p>
<pre><code>Sys.Application.add_load(function(){updateQueue();});
function updateQueue()
{
var queueShown = document.getElementById('<%= hiddenFieldQueueShown.ClientID %>').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#1923164Answer by Jason Kealey for Asp.Net Static method to refresh pageJason Kealey2008-10-10T17:20:09Z2008-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#1923931Answer by Alfred B. Thordarson for Asp.Net Static method to refresh pageAlfred B. Thordarson2008-10-10T17:35:59Z2008-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><html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
<script type="text/javascript" language="javascript">
function forcePostback()
{
<%=getPostBackJavscriptCode()%>;
}
</script>
</head>
<body onload="javascript:forcePostback()">
<form id="form1" runat="server">
<div>
<asp:Label ID="Label1" runat="server" Text="Postbacking right now..."></asp:Label>
</div>
</form>
</body>
</html>
</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>