Posted by Thad on 02/25/07 22:22
ok...I can use an asp file to load my whole html page, no problem. The
problem is getting the asp file to print my menu within a table cell which
is already created by an html. Is there something wrong with the following
code? I may have the code right but my server is not allowing my use of the
asp file. Please let me know.
asp file: test1.asp
<html>
<body>
<dl id="menu">
<dt class="btn"><a href="carflags.html">Car Flags</a></dt>
</dl>
</body>
</html>
-----------------------
Part of my html:
<td id="topa">
<b>Items Menu</b>
<%
<p><!-- #include file="test1.asp" --></p>
%>
</td>
-----------------
Can anyone tell me what I am doing wrong?
Thanks,
Thad
[Back to original message]
|