What i've and what i want:

Now i've a user control. and i load the user control just like normal (see below)

<%@ Register src="navigation.ascx" tagname="navigation" tagprefix="navigation" %>
<asp:PlaceHolder ID="phNavigation" runat="server"></asp:PlaceHolder> <!-- Navigation -->

CODE:

// Load navigation user control in placeholder
        blocks_navigation navigation = (blocks_navigation)Page.LoadControl("blocks/navigation.ascx");
        phNavigation.Controls.Add(navigation);

But what i want is that i can make the content placeholder on runtime and load the content of the user conotrol in it also on runtime. This is because i have a public void that i Response.Write with All blocks. And i want to inlcude the usercontrol into that public fuction.

The function is:

I have couple of blocks in a table with positions. I fill them all but if the block title is navigation i want to make on runtime the placeholder and load the usercontrol into it!

Hope somebody can help me fixing this or give me some tips to do it on a other way or maybe dirty way?

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.