I have several spots on my snitz integrated site that I would like to post articles, text messages, etc... When I tried using straight html with the asp environment, things went haywire. So I tried the following code (this was a file of it's own that used to include in an .asp portal page.) :
<%
Response.Write "<table width=""100%"" border=""0"" bordercolor=""" & strTableBorderColor & """ cellspacing=""1"" cellpadding=""0"" bgcolor=""" & strTableBorderColor & """>" & vbNewLine & _
"<tr>" & vbNewLine & _
"<td align=""left"">" & vbNewLine & _
"<table width=""100%"" border=""0"" cellspacing=""0"" cellpadding=""0"" bgcolor=""" & strForumCellColor & """>" & vbNewLine & _
"<tr>" & vbNewLine & _
"<td align=""center"">" & vbNewLine
Response.Write "<font face=""" & strDefaultFontFace & """ size=""" & strFooterHeaderSize & """ color=""" & strDefaultFontColor & """>[ Welcome to Texas Amateur Radio ]<br><br>" & vbNewLine
Response.Write "</font></td>" & vbNewLine & _
"</tr>" & vbNewLine & _
"</table>" & vbNewLine & _
"</td>" & vbNewLine & _
"</tr>" & vbNewLine & _
"</table>" & vbNewLine
%>
As you can see trying to write a paragraph with each line requiring etc. is really too much. How can I simply create text or html file to be included in a .asp page without freaking out the .asppage?