HisMightiness
Programmer
I have a complex layout that is dynamically generated. The snipped I am posting below is contained within a parent table cell. I need the HTML object in the snippet below to fill the parent table cell, but for some reason, I cannot figure out which element(s) is/are keeping me from getting this to work right.
I need everything in the first DIV to grow to 100% to fill the area that this snippet is in. Can someone please help me?
Will
Code:
<div ID="UpdatePanel1" style="height:100%;">
<table id="tblMainSearchContainer" border="0" cellpadding="0" cellspacing="0" width="316" height="100%" style="width:316px;height:100%;">
<tr height="100%" style="height:100%;">
<td height="100%" style="vertical-align:top;height:100%;">
<table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%" style="height:100%;">
<tr height="100%" style="height:100%;">
<td id="cellTravelSearch" class="rhtravelsearch_bckgd" style="vertical-align:top;background-color:#4B678E;height:100%;">
<!--
ANY NUMBER OF DYNAMIC ELEMENTS ARE LOADED HERE
-->
</td>
<td class="rhtravelsearch_border_right"><img src='<%=String.Concat(Me.ModulePathFull, "images/spacer.gif")%>' width="15" height="15" alt="" /></td>
</tr>
<!--tr height="15" style="height:15px;">
<td class="rhtravelsearch_border_bottom"> </td>
<td class="rhtravelsearch_corner_bot_right"> </td>
</tr-->
</table>
</td>
</tr>
</table>
</div>
Will