Difference between ScriptManager and ScriptManagerProxy in asp.net

Neeraj picture Neeraj · Jan 21, 2012 · Viewed 14.4k times · Source

What is the difference between scriptmanager and scriptmanagerproxy in asp .net?

Answer

Crab Bucket picture Crab Bucket · Jan 21, 2012

You can only have one script manager per page but you can have multiple proxies.

Used if you have the script manager in your master for instance which will go across all pages but you want a script manager reference in an underlying page or user control. In that instance you would add the proxy. If you added another script manager the page would error.

The offical MSDN documentation gives the details.