UPDATED I am getting the error: Cannot unregister UpdatePanel with ID 'UpdatePanel1' since it was not registered with the ScriptManager. This might occur if the UpdatePanel was removed from the control tree and later added again, which is not supported. Parameter name: updatePanel
The only panel I have on the page is not dynamic and is coded on the .aspx page.
The problem is I do not have an UpdatePanel on my page with ID of "UpdatePanel1".
Also when I run in Chrome it works fine, but when I run in IE9 I get this error.
I have not edited this page in some time and it was working before.
Any help would be appreciated.
UPDATE: I found out that on the previous page I have UpdatePanel1 and UpdatePanel2. on the previous page I am doing a server.transfer to the new page.
When debugging It transfers to new page, then somehow goes BACK to the original page and will trigger the unload events (if I place them in the page on the unload events for the UpdatePanels.
This makes the error go away for cannot unregister panel, but then the next page does not load ANYTHING, it appears blank. I step through it all and it looks like it should load everything, but I am not sure why it is not displaying anything on the page, if I view source it does not have much.
NOTE: I am also using master pages and the script manager is in the master page.