I have an access db I have 3 fields, A, B and C
I have an asp script that goes on Field C
Field A has all the records, Field B has records that have been entered and In field C you are supposed to see the result of field B if the record exists on Field A.
This works well with only the first record but after that I get nothing. Is there a way to do this?
I have an asp script that goes on Field C
Code:
<%if rsget("FieldB") = rsget("FieldA") then response.Write(Recordset1("FieldB")) %>
Field A has all the records, Field B has records that have been entered and In field C you are supposed to see the result of field B if the record exists on Field A.
This works well with only the first record but after that I get nothing. Is there a way to do this?