If I understood your question right, use variables.
Code:
<%
Dim strHTML
strHtml = "<html>"
strHtml = strHTML & "<Head>"
strHtml = strHTML & "<Title>My Title</Titlel>"
strHtml = strHTML & "</Head>"
strHtml = strHTML & "<Body>"
strHtml = strHTML & "This is my formatted text."
strHtml = strHTML & "</Body>"
strHtml = strHTML & "</html>"
Response.Write strHTML
%>
OR
Code:
<%
Response.write "<html>"
Response.write "<Head>"
Response.write "<Title>My Title</Titlel>"
Response.write "</Head>"
Response.write "<Body>"
Response.write "This is my formatted text."
Response.write "</Body>"
Response.write "</html>"
%>
Hope that helps.
Cheers!
_________________________
- Vijay G
Strive for Perfection