vote up 8 vote down star
3

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)?

According to egoldin Page.IsAsync is a very common confusion that has absolutely nothing to do with AJAX.

The correct approach is to use ScriptManager.GetCurrent ( Page ).IsInAsyncPostBack.

flag

Just had this problem, was using IsAsync instead of ScriptManager.GetCurrent ( Page ).IsInAsyncPostBack!!! – tpower Feb 13 at 15:23

1 Answer

vote up 7 vote down check

Use ScriptManager.GetCurrent ( Page ).IsInAsyncPostBack

link|flag
yep - I just tried it and it definitely works- thanks! – rohancragg Nov 5 '08 at 16:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.