Difference between ScriptManager and ScriptManagerProxy in asp.net
Asked Answered
P

2

19

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

Potassium answered 21/1, 2012 at 19:9 Comment(0)
F
23

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.

Fanchette answered 21/1, 2012 at 19:15 Comment(1)
Nope above is official post. You can also tried below post answered by me .Rockingham
R
1

The diffrence between "ScriptManager" and "ScriptManagerProxy" is only one , ScriptManagerProxy enables nested components to add script and service references if the page already contains a ScriptManager control , whereas ScriptManager includes the Microsoft AJAX Library and the functionality that enables partial-page rendering.Visit this, go to botton of the page :)

Second Link with example

Rockingham answered 4/1, 2017 at 9:31 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.