Jorgandr, that was it exactly! How did you ever guess?
Well, now can you help me make the next sql statement.
The story is like this:
The recordset checks a username and password from an html form from the page before against the database, and brings back the entire record for approval and possible update. Several of the fields in the table are lookup fields, so in order to display the info properly, I had to include other tables, as you figured out. Here's the sql statement that I have so far. Do I need to make another recordset without the additional tables and update from that? Another question: the fields that were lookups, I hadn't displayed the dropdown box, because I didn't know how to do that and display the record from the database. Can you help with this too? Will this make the same error/problem as before?
Thanks for your help. Here's the query.
"SELECT CandidateContactInfo.*, State.StateName, CareerLevel.CareerName " _
& "FROM CandidateContactInfo, State, CareerLevel " _
& "WHERE CandidateContactInfo.State = State.StateID " _
& "AND CandidateContactInfo.CareerLevel = CareerLevel.CareerID " _
& "AND UserName='" & Request.QueryString("txtUserName"

& "'OR UserName='" & session("UserName"

_
& "' AND Password='" & Request.QueryString("txtPassword"

& "'OR Password='" & session("Password"

& "'"