Need help with Panels in ASP.NET
-
I am trying to place a panel inside a table and place various contents in the panel. show below... EX: Placed a multiview - View - Calender in view
<table style="position: relative"> <tr> <td style="width: 150px"> </td> <td style="width:700px" **_height=auto_**> <asp:MultiView ID="MultiView1" runat="server" ActiveViewIndex="0"> <asp:View ID="View1" runat="server"> <asp:Calendar ID="Calendar1" runat="server" Style="position: relative"></asp:Calendar> </asp:View> </asp:MultiView></td> <td style="width: 150px"> </td> </tr> </table>
But the height is not increasing the calender is being displayed out side the panel when the page is loaded. Please, help if anyone have a solution to this... If not what other ways can i do this.Jats
-
I am trying to place a panel inside a table and place various contents in the panel. show below... EX: Placed a multiview - View - Calender in view
<table style="position: relative"> <tr> <td style="width: 150px"> </td> <td style="width:700px" **_height=auto_**> <asp:MultiView ID="MultiView1" runat="server" ActiveViewIndex="0"> <asp:View ID="View1" runat="server"> <asp:Calendar ID="Calendar1" runat="server" Style="position: relative"></asp:Calendar> </asp:View> </asp:MultiView></td> <td style="width: 150px"> </td> </tr> </table>
But the height is not increasing the calender is being displayed out side the panel when the page is loaded. Please, help if anyone have a solution to this... If not what other ways can i do this.Jats
You code is working fine for me. Check the other tags in the page. Bhanu