I have used the rad wiindow for popup and enter some data then save it to the database . i want to refresh the combo box when the rad windoe is closed.
i have wrriten the code leike this
i have wrriten the code leike this
function
openRadWindow(CustomerID)
{
var oWnd = radopen("AddPopup.aspx?CustomerID=" + CustomerID, "RadWindow1" );
oWnd.Center();
oWnd.add_close(OnClientCloseWin);
}
function OnClientCloseWin()
{
var ajaxManager = $find("<%= RadAjaxManager1.ClientID %>");
ajaxManager.ajaxRequestWithTarget(
'<%= btn.UniqueID %>', '');
}
its working fine in asp.net pages, but not support in master-content pages.
this code loads the page every time when cliking the button.
i need to call server side function without postbacking....
please reply me immediately...