Ajax – Use Ajax ToolKitScriptManager along with ScriptManager

ajaxasp.net

I have a page test.aspx which is inheriting master page.The master page has script manager addeded to it.I am trying to add the rating control availabel in the ajax control toolkit.

So i need to add the line <Ajax:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server"/>

But since the script manager is already availabel in master page i cannot add this line to my test page.And if i dont add it will not function.

What should i do?

Is there difference between script manager and toolkitscriptmanager.

How to use both simultaneously?

Best Answer

You can replace the scriptManager in the master page with <Ajax:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server"/> .This will certainly solve your problem.