vote up 0 vote down star
1

I am creating a series of client side component controls on the fly that are nested inside a update panel. The first time I create the controls, everything works as desired, however, when i trigger an update on the update panel and it does a partial postback the controls come back with several javascript errors describing how the control is already registered on the page.

I get a series of errors that say something about like: "Error: Sys.InvalidOperationException: Two components with the same id "master_ctl40_CCB_PALETTES" can't be added to the application"

Any ideas anyone?

flag
It sounds like your trying to create the controls twice. Would you be able to post your Update code? Where are you creating the controls? – Jon Feb 19 at 14:32

3 Answers

vote up 0 vote down

Looks like your client object is being created more than once.

If you want your client side controls to be replaced when the update panel they're in refreshes, they should inherit from Sys.UI.Control, which takes takes an element in its constructor. When that element is replaced by the update panel, the client object will be disposed and then re-created. If you're currently using a ScriptComponentDescriptor on the server side to define the client control instance, you'll want to switch to a ScriptControlDescriptor.

By the sounds of it, your client objects just inherit from Sys.Component, which will hang around until they're manually disposed, which is why you're getting an error about having more than one component with the same ID.

I would advise against using a new ID every post back - this will just keep creating new client objects without ever cleaning up the old ones.

link|flag
vote up 0 vote down

Try these tricks:

  1. On Page_Load put uxFailedControl.ID = DateTime.Now.ToString(); It will ensure your control has unique ID every time page reloads (fully or partially), so theoretically you shouldn't see anymore "same id" errors.
  2. If you display your control in Modal Popup: Every time you hide the popup from the server, remove the control from it's container (Panel, Page, Control, etc.) Use uxModalPopupPanel.Controls.Clear(); or uxModalPopupPanel.Remove(uxFailedControl);
  3. When you are done with debugging set ScriptMode property of your ScriptManager to "Release". It will prevent internal AJAX exceptions to be bubbled up to the browser.
link|flag
vote up 0 vote down

In which event are you adding the components to the update panel? I.e. have you placed them inside the page load event without a postback check or have you placed them inside the update panel load event? etc...

link|flag
Yes, I am adding them in the Page_Load event, however, if I say if(!Page.IsPostBack) then the controls don't get updated or sent down to the client after that. – Austin Feb 19 at 15:16
1  
Can you try adding your control inside the Page_Init event and remove the IsPostBack Code Block please. – REA_ANDREW Feb 20 at 8:26

Your Answer

Get an OpenID
or

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