Interesting...
So waht you're saying is that you've changed some field values in your Access database that are not being reflected in the records being retrieved by your ASP page..?
Open your access database and run a compact and repair (under the tools menu somewhere). Then try again.
Another thing to note is that you are not closing your recordset object!!!
After you're done with the recordset add this code
Code:
rs.Close
Set rs = Nothing
Another thing to note is to never use the asteriks (*) in your SQL statements!
It may take longer to write out each column header, but it will be well worth it for more reasons than I'm willing to go into right now.
Code:
rs.Open "SELECT * FROM tblcar", conn