vote up 0 vote down star

ASP.NET, C#

As the title suggests I was wondering if anyone knew how to programatically (c# code behind file) add a div to another a container div (in the aspx page).

Thanks in advance

flag

27% accept rate

3 Answers

vote up 2 vote down
Panel myChildPanel = new Panel();
myContainerPanel.Controls.Add(myChildPanel);
link|flag
vote up 2 vote down

Aside from using a Panel like ocdecio suggested, there are several other possibilities.

  • You can use an asp:Literal control inside the div and fill that with pregenerated HTML
  • Add a runat="server" to the div itself and access it as a HtmlGenericControl, adding other controls to it from your codebehind.
  • Using <%= ... %>

It depends a little on the level of control you need. Still, under a most circumstances, a Panel that starts out invisible would be best:

<div>    
<asp:Panel Visible="false" id="MyPanel" runat="server">
</asp:Panel>
</div>

Then change the visibility from your codebehind when needed.

One cases where you might want to use one of the other methods is when you're stuck with some CSS file that assigns styles based on ID. In that case, using .NET controls is not really an option. But really, you should smack your designer over the head and tell him to use class names instead.

link|flag
vote up 1 vote down

Use asp:Panel, which maps to a div.

link|flag

Your Answer

Get an OpenID
or

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