I get the error belowe when ScriptMode is set to Release.
> Error: Sys.WebForms.PageRequestManagerServerErrorException: Script entries not loaded yet.
This error occurs on version 7.1002.0 and greater. In a page I am adding AccordionPanes programmatically, but it always shows that error.
Comments: @godwares, Nice one mate! It worked! My problem was with Silverlight, application wouldn't load and an error was written to the browser console. "System.UI.Silverlight is undefined" or "System.UI.Silverlight.control" is undefined. This was happening if the compile configuration debug attribute was set to false, if web.config had it to true, all went smoothly. In the end I had my suspicions about ToolkitScriptManager and started messing around with the _ScriptMode_ attribute - that lead me to here - and by adding _CombineScripts="False"_ it was all solved. Many thanks! Damn quirky AjaxToolkit... Cheers
> Error: Sys.WebForms.PageRequestManagerServerErrorException: Script entries not loaded yet.
This error occurs on version 7.1002.0 and greater. In a page I am adding AccordionPanes programmatically, but it always shows that error.
Comments: @godwares, Nice one mate! It worked! My problem was with Silverlight, application wouldn't load and an error was written to the browser console. "System.UI.Silverlight is undefined" or "System.UI.Silverlight.control" is undefined. This was happening if the compile configuration debug attribute was set to false, if web.config had it to true, all went smoothly. In the end I had my suspicions about ToolkitScriptManager and started messing around with the _ScriptMode_ attribute - that lead me to here - and by adding _CombineScripts="False"_ it was all solved. Many thanks! Damn quirky AjaxToolkit... Cheers