Hi,

I am receiving this error and havn't a clue why:

ADODB.Recordset (0x800A0BB9)
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
PostMessage.asp, line 285


Here's my code, which the error is pointing to:

Response.Write "<br><br><TABLE width = 90% BORDER=0>"
i=0
do while i<10
Response.Write "<TR><h2>" & rs("Subject") & "</h2></TR>"
Response.Write "<TR>" & rs("Message") & "</TR><br>"
Response.Write "<TR><td>" & rs("Name") & "</td>"
Response.Write "<td>" & rs("TownCity") & "</td>"
Response.Write "<td>" & rs("Date") & "</td></tr><br><br>"
'Response.Write "<tr><img src="images/line.jpg" width="500" height="10"></tr>"

rs.MoveNext
i=i+1
loop

Response.Write "</TABLE>"

Thanks