Quote:
Originally posted by weevaa
auction_refdb = RS("AUCTION_REF")
|
Before you pull data from a RS, make sure it has something in it:
Code:
If NOT RS.BOF AND NOT RS.EOF Then
auction_refdb = RS("AUCTION_REF")
.
.
.
Else
Response.Write "No records were found."
End If
Now, if you know for a fact the record exists.. it could be that the case they type the email address in is different.
myemail@domain.com
is diffeent then:
MyEmail@domain.com
(when using SQL)
Try the "LIKE" statement... WHERE BUYER_EMAIL
LIKE '" & buyer_emailform & "'"