Ok. Forget Blah. I'm going to tell you the exact situation. I have a MSACCESS Database. I have a table called Articles, in that table I have the fields Id_no, ParentID, ForumID, Subject, AuthorName, Date, and Text. I have this sql statement in my page:
Do while NOT rs.EOF
if color = "#8C8C8C" then
color = "#5B5B5B"
ELSE
color = "#8C8C8C"
End if
Response.Write("<table width=" & """" & "400" & """" & " bgcolor=" & """" & color & """" & " height=" & """" & "75" & """" & " class=" & """" & "outlink" & """" & ">"

Response.Write("<tr>"

Response.Write("<td valign=" & """" & "top" & """" & ">"

Response.Write("<b><a href="

Response.Write("""" & "whatever.asp?parentid=" & rs("ParentID"

.Value & """"

Response.Write(" class=" & """" & "outlink" & """" & ">" & rs("Subject"

.Value & "</a></b>"

Response.Write("</td>"

Response.Write("</tr>"

Response.Write("<tr>"

Response.Write("<td valign=" & """" & "top" & """" & ">"

Response.Write("<b>By:</b> " & rs("AuthorName"

.Value)
Response.Write("<b><br>Created:</b> " & rs("Date"

.Value)
Response.Write("</table>"

rs.movenext
loop
When I have rs("Subject"

.Value, it is talking about the rs recordset. In the record set it has a whole record, but, I only want the subject, and it just so happens that in the field, in that record, it has "Next Time....", without the quotes. Now, when the recordset writes that to the screen it replaces "Next Time...." with "Next Time?." I assume that this is a formating error. If I have still not made myself clear, please do ask and I'll be glad to clarify it more. Thanks!
"Everything is possible, it just depends on how much you want to pay for it."
-James