<%
your ASP code
%>
<HTML>
<HEAD>
<TITLE><%=VarPageTitle%></TITLE>
</HEAD>
<BODY>
<p>
<%=Text%>
</p>
</BODY>
</HTML>
Hopefully you get it. You can mix HTML in with your ASP coding. So like you set a variable with the page's title and then you just insert that variable into your HTML.
By the way, the quotes aren't really tricky at all (although they seem that way at first!)... you just have to escape a quote with another quote... like:
Response.Write("<a href=""blah.asp"">Link</a>")
Get it?
__________________
Former ASP Forum Moderator - I'm back!
If you can teach yourself how to learn, you can learn anything. ;)