How can you tell if a method is being run in UpdatePanel postback? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T22:51:33Z http://stackoverflow.com/feeds/question/265686 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/265686/how-can-you-tell-if-a-method-is-being-run-in-updatepanel-postback 8 How can you tell if a method is being run in UpdatePanel postback? rohancragg 2008-11-05T16:23:39Z 2008-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#265709 7 Answer by baretta for How can you tell if a method is being run in UpdatePanel postback? baretta 2008-11-05T16:28:49Z 2008-11-05T16:28:49Z <p>Use ScriptManager.GetCurrent ( Page ).IsInAsyncPostBack</p>