Error: Only one instance of a ScriptManager can be added to the page

11.4k Views Asked by At

I got this Error when I added ScriptManager on a "Site.Master" (Master Page)

All child webForm of site.Master that contains ScriptManager. produce this error.....

Only one instance of a ScriptManager can be added to the page.

help Thanks

2

There are 2 best solutions below

3
On BEST ANSWER

use a ScriptManagerProxy on your child pages/user controls

http://msdn.microsoft.com/en-us/library/system.web.ui.scriptmanagerproxy(v=vs.110).aspx

1
On

You probably have another instance of in one of the pages /user controls that inherits from this master page.