i have one Webpart which shows an image slider. The image slider will be added by getting image url from webpart toolpart . and i will bind image slider in webpart using this.controls.add() method.

Here i need to allow users to add any webpart inside my webpart by creating a webpartzone. I think it is possible.

But the problem is everytime i'll create my control and webpartzone dynamically in creatchildcontrols() method. So if the user refresh the page the webparts inside the custom webpartzone 'll be deleted. Because i am building everying dynamically.

How to persist all the webparts and webpart proprties inside my custom WebPartZone, when the page refresh.

Please someone help me.

link|improve this question

62% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Why do you need to add zone? You can simply use ImportWebPart and directly add the control to your controls collection.

Regarding persisting the settings, the parent web part will have to do that for the children. For this to work, you can implement an interface on your child webpart, which the parent can call to get the settings. The settings can be serialized by parent webpart and stored in its personalization database.

link|improve this answer
Yes, you cannot add zones dynamically. The other option is to allow the user to upload .webpart file. You can read the .webpart file using API and create an instance of webpart object programmatically and add it to your control collection. – Madhur Ahuja Sep 8 '11 at 10:16
feedback

Your Answer

 
or
required, but never shown

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