Try our conversational search powered by Generative AI!

How to add a user control to PropertyDataControl

Vote:
 

hi,

    I want to implement a custom property, which functions is: provide a input box to add list item and a repeater to render the list item. I want to use asp.net web user control to wrap the input box, add button and repeater. So I need add this user control to the custom property control. I have tried     

 this.Controls.Add(myusercontrol)  in CreateEditControls(), but it didn't work. I can't see any content when I use this custom property in edit mode.

    

#29907
May 22, 2009 6:35
Vote:
 

Hi, this works for me.

public MultiPageEdit usercontrol = new MultiPageEdit();
public override void CreateEditControls()
{
usercontrol = (MultiPageEdit)Page.LoadControl("~/somepath/MultiPageEdit.ascx");
Controls.Add(usercontrol);
}

 

#29910
May 22, 2009 10:46
Vote:
 
Thanks a lot, it works!
#29959
May 25, 2009 4:33
This thread is locked and should be used for reference only. Please use the Episerver CMS 7 and earlier versions forum to open new discussions.
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.