I am trying to update and updatepanel from javascript.
The code I'm using works, but only seems to do a full page post back.
function RefreshAppearances() {
var prm = Sys.WebForms.PageRequestManager.getInstance();
prm._doPostBack('<%=Me.updAppearances.ID %>', '');
}
When the updatepanels load event fires the ScriptManager.IsInAsyncPostBack
always returns false.
Why might this be happening?