I want to create custom control (let's name it DesignPanel
) that will allow user to design his own webpage structure that would be stored in a sitemap file. This Design Panel will have child controls inside ( SiteElement
). User will build page strcture by connect Site Elements, customize them ( like change name) and add new ones.
This last point is main issue for me. Should I add those Site Element controls dynamically like DesignPanel.Controls.Add(new SiteElement())
in UpdatePanel
control or there is better approach ( adding them to DOM structure by javascript, something diffrent)?
I dont need any code or prepared solution, just name techniques that I should look for!
thanks!