hi everybody



i have been working with the coolite controls in code behind i found examples and i still find out how does this object (pnlNorth.Content = new TableLayout()) work? because in HTML code it´s like this

<North>
<ext:Panel ID="pnlNorth" runat="server" Height="80" Border="false" Header="false" BodyStyle="background-color: transparent;">
<Content>
<div id="settingsWrapper">
<div id="settings">
<ul>
<li id="itemAddContent"><a href="#">Add contet</a></li>
<li id="itemComments"><a href="#">Coment</a></li>
<li id="itemActivities"><a href="#">Activities</a></li>
<li id="itemContacts"><a href="#">Contacts</a></li>
</ul>




<div id="pageTitle">example page

</ext:Panel>
</North>


and works great i want it to do the same in the code behind but i don´t understand how can i put code in the content because this //pnlNorth.Content = new TableLayout() is commented

code behind




// Make Panel for North Region


Coolite.Ext.Web.Panel north = new Coolite.Ext.Web.Panel();
north.ID = "NorthPanel";
north.Title = "North";
north.Height = Unit.Pixel(45);
north.Border = true;
north.Header = false;
north.BodyStyle = "background-color: transparent;";
north.Html = "Example";

//north.Content = new TableLayout();

THe question is how can i place code into that object or how does it work?

if anybody has some info about this i will appreciate it a lot or if you have any link it will be fine too