This lesson will overview the steps to add the Web Wiz Guide
discussion forum to a FrontPage web site. Web Wiz Guide is a fantastic ASP
application and it is free to download. To learn more from the
programmer (Bruce Corkhill ) who created the Web Wiz Guide forum, visit
http://www.webwizguide.info/info.asp
!
SEE this FORUM INSTALLED HERE
.........Try out the forum, register, post and experiment
<table> <tr> <td width="20%">Your menu stuff goes here</td> <td
width="80%">
- Notice: In the header.asp you opened the table
with a table row and a cell to the left of 20%. Then you created
a second cell of 80%. This second cell is CLOSED in the footer
and the table row is closed as well as the table is closed in
the footer! Doing this will then place the forum inside of the
80% cell.
- Experiment with the header.asp and footer.asp files to wrap
your design around the forum.
NOTE: I would make a copy of the header.asp and
footer.asp files BEFORE you modify them.
Need MORE HELP? Review this....
Help the Header.asp file

Here is what a table looks like in design view when
added to the header.asp page
The Table code for header.asp
<table border="1" width="760" id="table1">
<tr>
<td width="760" colspan="2"
align="center">Site Banner Here</td>
</tr>
<tr>
<td width="160"> </td>
<td width="600">
NOTICE: The last <td tag (table cell) is
NOT closed. Also notice that the last <tr> tag is not closed here in the
header.asp file. It gets closed in the footer.asp page. (see below)
The Footer.asp code
<!-- footer -->
</td>
</tr>
</table>
</body>
</html>
NOTICE: The closing of the html tags. The
table cell gets closed </td> then the table row gets closed </tr> and
finally the table gets closed </table>
! View a Sample Install of
the Web Wiz Guide Forum HERE
This lesson has been read
times