vote up 5 vote down star
1

I've got a UserControl that contains an UpdatePanel. WHen I put that on a page, it throws the following error:

Cannot unregister UpdatePanel with ID 'ReviewContentUpdatePanel' 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

ReviewContentUpdatePanel is the name of the update panel & it's not being removed or added in code, it exists in the aspx page and isn't removed. Has anyone come across this before?

flag

76% accept rate
Have you got a ScriptManager on the page containing the UserControl? – tvanfosson Oct 27 '08 at 2:31
yep, and a scriptproxy on the usercontrol – Glenn Slaven Oct 27 '08 at 2:32
Can you post code? Most of the references to this error deal with adding updatepanels/controls dynamically. Is the user control being added dynamically? – tvanfosson Oct 27 '08 at 3:06
No it's not, it's just sitting on the control in code in front – Glenn Slaven Oct 27 '08 at 3:10
There's no code that interacts with the updatepanel – Glenn Slaven Oct 27 '08 at 3:14
show 2 more comments

9 Answers

vote up 0 vote down

This is a bit of a long shot, but I've had experiences with the AJAX extensions, specifically with the update panel, in which errors thrown by child controls were manifesting themselves as a different error thrown by the update panel. I did see a reference to this specific error being thrown due to an error in a child control:

http://msmvps.com/blogs/shareblog/archive/2009/03/11/cannot-unregister-updatepanel-with-id-since-it-was-not-registered-with-the-scriptmanager-and-moss.aspx

Not sure if this is the case for you or not, but I've spent many hours chasing down the wrong errors because of this.

link|flag
vote up 0 vote down

Try to remove the scriptproxy of UserControl. In this case you only have a ScriptManager on your page.

link|flag
vote up 0 vote down

Have you tried including a ScriptManagerProxy in the user control?

link|flag
vote up -6 vote down

Who still uses Update Panels??

link|flag
What would you recommend someone use if not an update panel? – ahsteele Feb 28 at 9:04
I recommend REAL ajax programming, Javascript + (XML or JSON) services, use jQuery for simplicitly and high performance – bashmohandes Mar 8 at 3:27
i've found that a combination of jquery for some things and update panels for others is a pretty good combo. some stuff is just easier w/update panels. – Jason Jun 3 at 19:47
vote up 1 vote down

I had this happen once before. To fix it, I just deleted it and then re-created it and the problem went away.

link|flag
vote up 1 vote down

This error occurs when the Controls collection in which the UpdatePanel is resided is cleared using the Clear method, or when the specific UpdatePanel is removed using the Remove method.

A trigger for these methods could be the implementation of the CreateChildControls method for the control contains the UpdatePanel. Usually, you call Controls.Clear() in the top of this method, to start with a clean slate if this method is called repeatedly.

link|flag
vote up 1 vote down

In your markup, make sure you've specified an ID for both UpdatePanels and for every runat="server" control in their parent hierarchies.

link|flag
vote up 1 vote down

make sure you have only one scriptmanager in your page , maybe there is one in your usercontrol?

link|flag
vote up 0 vote down

Are you moving controls about in code? If so take a look here and see if this solves your problem.

link|flag
I'm not moving anything around in code, nothing is interacting with the update panel or its containg usercontrol in code – Glenn Slaven Oct 27 '08 at 20:19
Can you post some sample code (if it is not sensitive that is) – DilbertDave Oct 27 '08 at 20:23
Ignore that - i've just seen the comments in the other post. New to SO! – DilbertDave Oct 27 '08 at 20:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.