Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Simple question from asp beginner

0 views
Skip to first unread message

Thad

unread,
Feb 25, 2007, 4:13:00 PM2/25/07
to
I have this html page the inside a table cell. I am trying to print my menu
on the users screen using asp. How would I call the asp file to write the
words inside the cell. Do I have to take out the html and body tags from
the asp file for this to work. I've checked tutorials and the following is
my result which does not work. Any suggestions?

asp file test1.asp ...
<html>

<body>

<%

response.write("<dl id='menu'>")

response.write("<dt class='btn'><a href='carflags.html'>Car Flags</a>")

response.write("</dl>")

%>

</body>

</html>

-----------------------

html snip...

<td id="topa">
<b>Items Menu</b>
<%
test1.asp
%>
</td>


0 new messages