1
如何我得到我如何獲得在endrequest方法中的_dopostback()中傳遞的參數?
_dopostback('','');
過去了例
__doPostBack('<%=upSubAccount.ClientID %>',true);
參數值我想在endrequest第二個參數()處理程序,在這裏
//絲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;
}
}