show/hide this revision's text 2 added 379 characters in body

You have a couple problems here, but first I will answer your questions about the workarounds.

  1. No you are already using a server control.
  2. No design-mode is to just make the lives of the developer easy, it doesn't effect anything else

You have two problems here. There is already a property called UniqueID I don't know if you were trying to overload that, but the question wasn't clear. The second problem is that your UniqueID essentially not getting stored anywhere. Try the following code:

public Guid UniqueId {
    get { return (Guid)ViewState["MyUserControlUniqueId"]; }
    set { ViewState["MyUserControlUniqueId"] = value; }
}

That will store the GUID in the ViewState so that you can retrieve it on post backs.

Update: Given your comment you need to override/use this method to add attributes to the rendered content.

http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.webcontrol.addattributestorender.aspx

show/hide this revision's text 1

You have a couple problems here, but first I will answer your questions about the workarounds.

  1. No you are already using a server control.
  2. No design-mode is to just make the lives of the developer easy, it doesn't effect anything else

You have two problems here. There is already a property called UniqueID I don't know if you were trying to overload that, but the question wasn't clear. The second problem is that your UniqueID essentially not getting stored anywhere. Try the following code:

public Guid UniqueId {
    get { return (Guid)ViewState["MyUserControlUniqueId"]; }
    set { ViewState["MyUserControlUniqueId"] = value; }
}

That will store the GUID in the ViewState so that you can retrieve it on post backs.