<
div class="headingbar">
<table style="width:100%;height:100%" cellpadding="0" cellspacing="0">
<tr>
<td>Some stuff here</td>
</tr>
</table>
</div>
<asp:ContentPlaceHolder ID="MainContent" runat="server">
</asp:ContentPlaceHolder>
<div class="footer">
<table style="width:100%;height:100%" cellpadding="0" cellspacing="0">
<tr>
<td>Some stuff here</td>
</tr>
</table>
</div>
On the actual page, I have insert a splitter with two Vertical Panes in ContentPlaceHolder. I want the splitter to fill the remaining screen and resize with the window, showing scrollbar depending on the content. Is there a way to tell the splitter to set height to 100% of the remaining white space (or 100% - hieght of other items on the page).
Thanks in advance.
- Adam