UpdatePanel not working with ToolkitScriptManager
When u use scriptmanager with updatepanel then it's fine.
But when u add ToolkitScriptManager for any ajax control like extender, then page wont run because there are two scriptmanager.
So if u delete scriptmanager then UpdatePanel will not work with ToolkitScriptManager.
To resolve this issue, only use ToolkitScriptManager because it has scriptmanager as parent.
make following changes in your code. just add property "ChildrenAsTriggers="true""
lt&&;@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="asp" % gt&&;
...........
lt&&;asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server" ChildrenAsTriggers="true" gt&&;
lt&&;/asp:ToolkitScriptManagergt&&;
Comments
httpRuntime executionTimeout="1800" maxRequestLength="400000" requestLengthDiskThreshold="8192"
it will upload max 40 mb at a rate of 80 kb. i did in my intranet but httpRuntime executionTimeout="1800" maxRequestLength="400000" requestLengthDiskThreshold="8192" may cause DoS attack on internet.
ChildrenAsTriggers is not a property of ToolkitScriptManager.
ChildrenAsTriggers is a property of UpdatePanel.
Instead of putting the property in ToolkitScriptManager put it inside UpdatePanel.
Also try to put these properties in ToolkitScriptManager, if you get an errorEnableScriptGlobalization="true" EnableScriptLocalization="true"
i am using toolkit scriptmanager.i have added a feedbackpanel to my page.but the feedback is not visible.after this i added update panel and scriptmanager.but it shows an error stating cannot use two scripmanager.help me in displaying my feedback.is there any alternate for update pannel if i use toolkit script manager..