How can you tell if a method is being run in UpdatePanel postback? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T22:51:33Zhttp://stackoverflow.com/feeds/question/265686http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/265686/how-can-you-tell-if-a-method-is-being-run-in-updatepanel-postback8How can you tell if a method is being run in UpdatePanel postback?rohancragg2008-11-05T16:23:39Z2008-11-07T20:41:59Z
<p>How can I tell if a method is running in the context of an AJAX postback (i.e as the result of a UpdatePanel (asynchronous) postback)?</p>
<p>According to <a href="http://msmvps.com/blogs/egoldin/archive/2008/05/21/how-to-tell-the-page-is-in-ajax-call.aspx" rel="nofollow">egoldin</a> Page.IsAsync is a very common confusion that has absolutely nothing to do with AJAX.</p>
<p>The correct approach is to use ScriptManager.GetCurrent ( Page ).IsInAsyncPostBack.</p>
http://stackoverflow.com/questions/265686/how-can-you-tell-if-a-method-is-being-run-in-updatepanel-postback/265709#2657097Answer by baretta for How can you tell if a method is being run in UpdatePanel postback?baretta2008-11-05T16:28:49Z2008-11-05T16:28:49Z<p>Use ScriptManager.GetCurrent ( Page ).IsInAsyncPostBack</p>