I have a website that has one master page, and as I built it, I had some child pages that used updatepanels and other ajax controls, and some that did not. Of the ones that did, I usually put in the scriptmanager, but on a few, that did not work, and I had to use toolkitscriptmanager.
Now, I want to add the ability for a javascript function in the master page to call a function on the server.
I read that there are 2 ways to do this. One is using "Page methods" and the other is having a "web service".
Page Methods require a script manager. So I could remove ALL script managers and toolkit script managers from my webpages (I have about 200 web pages) and just put one scriptmanager in the master page.
My question is though, can I put both a script manager and a toolkitscriptmanager in my master page? Should I only put one of the two? And since some pages (the ones that use htmleditor extenders) need the toolkitscriptmanager, would that work with ALL pages?
Thanks.