I need full postback when one of the buttons within RadAjaxPanel is clicked. I followed the documentation section "Exclude controls from ajaxifying" by registering postback on page load
ScriptManager1.RegisterPostBackControl(Button2);
This works, but only once. When the same or another button is clicked after the first time, nothing happens. No postbacks.
This may have something to do with SharePoint because the code runs fine if the control under ASP.NET, but once the control is deployed to SharePoint, postback occurs only once.
How can I troubleshoot this problem?
Thanks,
-Stan
ScriptManager1.RegisterPostBackControl(Button2);
This works, but only once. When the same or another button is clicked after the first time, nothing happens. No postbacks.
This may have something to do with SharePoint because the code runs fine if the control under ASP.NET, but once the control is deployed to SharePoint, postback occurs only once.
How can I troubleshoot this problem?
Thanks,
-Stan