views:

605

answers:

2

Hi,

I need to determine in the page is loading in a partial rendering mode (when posting back from within an UpdatePanel).

Any suggestions?

+3  A: 

You can use the IsInAsyncPostBack property of ScriptManager to check if the page is loading through a partial postback.

indyfromoz
+1  A: 

This article on codeproject might help too:
http://www.codeproject.com/KB/custom-controls/asp-ajax-custom-controls.aspx

seanb