Why doesn't the following page display on Brinkster (or any other host which support ASP)?
It's REALLY simple html typed out useing Response.Write! This is really frustrating, can anyone PLEASE help me out?Quote:
<%
Option Explicit
Response.Expires = -1000
Response.Write("<head><title>Classified: For Sale</title></head>")
Response.Write("<STYLE TYPE='TEXT/CSS'>")
Response.Write("<!--")
Response.Write("A { color:black ; text-decoration: none;}")
Response.Write(".content { color:black ; font-size:12; font-family:arial;}")
Response.Write(".content2 { color:black ; font-size:12; font-weight: bold; font-family:arial;}")
Response.Write(".form1 { background-color: white;border:1px #000000 solid; color:#000000 ; font-size:10; font-family:arial;}")
Response.Write("-->")
Response.Write("</STYLE>")
Response.Write("<body bgcolor=#33669A>")
Response.Write("<table align=center width=800 border="0" cellspacing="1" cellpadding="1">")
Response.Write("<tr bgcolor=#EEEEEE>")
Response.Write("<td bgcolor=#FFC800 align=center><font style='color:#000000 ; font-size:9; font-family:arial; font-weight:bold;'>Classified: For Sale</font></td>")
Response.Write("</tr>")
Response.Write("<tr bgcolor=#EEEEEE>")
Response.Write("<td valign=top>")
Response.Write("<table width="800" border="0" width="582" cellspacing="0" cellpadding="0">")
Response.Write("<tr>")
Response.Write("<td width="62"><font class=content2>Browse:</font></td>")
Response.Write("<td width="208"><font class=content2><a href="bookssale.htm">¹ Books</font></td>")
Response.Write("<td width="416" align="right"><font class=content2><a href="register.htm">¹ Register</a></font></td>")
Response.Write("<td align="right"><font class=content2>Search:</font></td>")
Response.Write("</tr>")
Response.Write("<tr>")
Response.Write("<form name=searchform action=search.asp METHOD=POST>")
Response.Write("<td width="62"> </td>")
Response.Write("<td width="208"><a href="computerpartssale.htm"><font class=content2>² Computer Parts</font></td>")
Response.Write("<td width="416" align="right"><font class=content2><a href="login.htm">² LOGIN</a></font></td>")
Response.Write("<td align="right"> <INPUT TYPE=TEXT NAME=SearchField SIZE=20 CLASS=form1></td>")
Response.Write("</form>")
Response.Write("</tr>")
Response.Write("<tr>")
Response.Write("<td width="62"> </td>")
Response.Write("<td width="208"><font class=content2><a href="miscellaneoussale.htm">³ Miscellaneous</td>")
Response.Write("<td valign=top width="416" align="right"><font class="content2"><a href="help.htm">³ Help</a></font></td>")
Response.Write("<td align="right"> </td>")
Response.Write("</tr>")
Response.Write("</table>")
Response.Write("</td>")
Response.Write("</tr>")
Response.Write("</table>")
Response.Write("<table align=center width=804 border="0" cellspacing="1" cellpadding="1">")
Response.Write("<tr align=center bgcolor=#FFC800 style='color:black; font-weight: bold'>")
Response.Write("<td>font class=content2>Course No.</font></td>")
Response.Write("<td><font class=content2>Title</font></td>")
Response.Write("<td><font class=content2>Description</font></td>")
Response.Write("<td><font class=content2>Price</font></td>")
Response.Write("<td><font class=content2>Contact</font></a></td>")
Response.Write("</tr>")
Response.Write("<tr>")
Response.Write("<td bgcolor=#FFC800 colspan=100 align=right><font style='color:#000000 ; font-size:11; font-family:arial; font-weight: bold;'>Count: " & counter & "/ALL</font></td>")
Response.Write("</tr>")
Response.Write("</table>")
Response.Write("</body>")
%>
