How to I get the parameter value passed in
_dopostback('','');
For Example
__doPostBack('<%=upSubAccount.ClientID %>',true);
I want to get the second parameter in endrequest() handler, here
//wire the End Request process,
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(requestComplete_Handler)
//will be called after the async request completes.
function requestComplete_Handler(sender, args)
{
var panel = sender._postBackSettings.sourceElement.id;
switch (panel)
{
case "<%=upSubAccount.ClientID %>":
__doPostBack('<%=upAllocationChart.ClientID %>');
break;
}
}