I have a set of tables I am trying to set up to extend to the bottom of the page or the end of the page - whichever is greater.
What I have is a table with 3 rows.
The top row is the top of my page with my logo (mostly blue) and some menus.
The bottom row is the bottom of my page (blue).
The middle row has a 2 column table, where the left cell is also blue with some buttons on it.
That frames my page.
The right cell of the middle row is where my content is. The size of the page is determined by my content area.
What I want to do is to make sure the bottom row is always at the bottom of my page - even if there is only one line of data in the content.
My page looks like:
**********************************************************
<%@ Page Language="VB" ContentType="text/html" ResponseEncoding="iso-8859-1" %>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<table width="750" border="1" cellspacing="0" cellpadding="0" bordercolor="#000099">
<tr>
<td><img src="file:///C|/Inetpub/ width="750" height="100"></td>
</tr>
<tr>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="150" bgcolor="#000099"> </td>
<td><p> </p>
<p> </p></td>
</tr>
</table></td>
</tr>
<tr>
<td bgcolor="#000099"> </td>
</tr>
</table>
</body>
</html>
**********************************************************
Thanks,
Tom.
What I have is a table with 3 rows.
The top row is the top of my page with my logo (mostly blue) and some menus.
The bottom row is the bottom of my page (blue).
The middle row has a 2 column table, where the left cell is also blue with some buttons on it.
That frames my page.
The right cell of the middle row is where my content is. The size of the page is determined by my content area.
What I want to do is to make sure the bottom row is always at the bottom of my page - even if there is only one line of data in the content.
My page looks like:
**********************************************************
<%@ Page Language="VB" ContentType="text/html" ResponseEncoding="iso-8859-1" %>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<table width="750" border="1" cellspacing="0" cellpadding="0" bordercolor="#000099">
<tr>
<td><img src="file:///C|/Inetpub/ width="750" height="100"></td>
</tr>
<tr>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="150" bgcolor="#000099"> </td>
<td><p> </p>
<p> </p></td>
</tr>
</table></td>
</tr>
<tr>
<td bgcolor="#000099"> </td>
</tr>
</table>
</body>
</html>
**********************************************************
Thanks,
Tom.