vote up 3 vote down star

So, this is what we want to do: We want to have a generic web part with a custom frame around it and then dynamically load other web parts (frameless) inside it. Would this at all be possible you think? A bit like Jan Tielens SmartPart, only not for ASP.Net User Controls, but for other Web parts... ;)

Edit: We've been able to do this now. The solution was actually pretty simple. Check out the code:

public class WebPartWrapper : System.Web.UI.WebControls.WebParts.WebPart {
    protected override void CreateChildControls() {    
        Panel pnl = new Panel();
        this.Controls.Add(pnl);
        WebPart dynamicPart = WebPartFactory.CreateWebPart("RSSViewer");
        pnl.Controls.Add(dynamicPart);
    }
}

Easy as that... We also use reflection to store the webparts as Xml etc., but that's beside the point.

flag

That would work for simple webparts, but will it work for things that leverage webpart specific things like consumer/producer etc? – Steven Robbins Jan 16 at 12:48
You're talking about connections, correct? I suppose yes, it's just a matter of setting the right property values. But I haven't tried this... – noocyte Sep 8 at 16:38

4 Answers

vote up 0 vote down

Where do I find the WebPartFactory class?

link|flag
It's a custom class. Sorry for not making that clear. I'll update my answer to reflect this. – noocyte May 11 at 11:52
vote up 0 vote down check
public class WebPartWrapper : System.Web.UI.WebControls.WebParts.WebPart {
    protected override void CreateChildControls() {    
        Panel pnl = new Panel();
        this.Controls.Add(pnl);
        WebPart dynamicPart = WebPartFactory.CreateWebPart("RSSViewer");
        pnl.Controls.Add(dynamicPart);
    }
}

The WebPartFactory class is a custom class (using the Factory pattern). It will use the input string as a key to find out which webpart to instanciate and create it using reflection.

link|flag
vote up 0 vote down

There are (at least) two ways to do this: using iframe HTML element, or just a div whose content is changed by JavaScript (probably with Ajax).

[NOTE] My answer is generic (ie. on Web design side), I have no idea how it in your technical context, so maybe I should delete this answer...

link|flag
vote up 3 vote down

I don't think so. I tried this a while back and it complained about only being able to add WebPartZone items in Page Init. I think by the time it get's to initialising your "container" WebPart it's too late to add more zones as the holding page has already been initialised.

link|flag
I've now discovered how to do this and will update my post to show this. :) – noocyte Jan 16 at 12:04

Your Answer

Get an OpenID
or

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