jgoodman00
Programmer
- Jan 23, 2001
- 1,510
In the standard web page layout of a header bar along the top, menu bar on the left, content in the middle & footer bar along the bottom what is the preffered method of implementing this?
I currently use tables to position objects where I want them, but I am not sure if this is the best practice?
e.g.
Also, I currently copy these table objects manually into each page & then include my commonly used control objects (such as menu bar etc), before designing each page.
Is this the best practise, or is there a better way of doing this?
James Goodman MCSE, MCDBA
I currently use tables to position objects where I want them, but I am not sure if this is the best practice?
e.g.
Code:
<Table1>
<tr>
<td>MainMenu</td>
<td>
<Table2>
<tr>HeaderBar</tr>
<tr>MainContent</tr>
<tr>FooterBar</tr>
</Table>
</td>
</tr>
</Table>
Also, I currently copy these table objects manually into each page & then include my commonly used control objects (such as menu bar etc), before designing each page.
Is this the best practise, or is there a better way of doing this?
James Goodman MCSE, MCDBA