Author: TBarton | Posted on: 10/31/2009 11:43:55 AM | Views : 1143

I have a master page that conatins some tables. I want to put a treeview in one of the cells of a table. When I place the treeview in the cell it never shows.
Can you not use a treeview in a table?
<asp:Table ID="Table2" runat="server" Height="550px" Width="100%"> <asp:TableRow runat="server" Width="100%"> <asp:TableCell runat="server" BackColor="#460046" Width="10%"> <asp:TreeView ID="TreeView1" runat="server" RootNodeStyle-ImageUrl="images/Plumtab.jpg"> </asp:TreeView> </asp:TableCell> <asp:TableCell runat="server" Width="90%" VerticalAlign="Top"> <asp:ContentPlaceHolder id="ContentPlace ...

Go to the complete details ...