ComputerCop911
Programmer
ok, I am running a script that requires the user to input data into a form, and I want the form to check if the data exists in ANY record in the field. but when I use this code:
if Request.Form("VALUE1"
<> recordset("VALUE2"
then
response.write("The data you entered is invalid."
else
------
then it continues with the code if the data exists. However, it only checks the first record! it doesnt check every record to see if the data is anywhere else.
can someone help?
ComputerCop911
ASP/HTML Programmer
if Request.Form("VALUE1"
response.write("The data you entered is invalid."
else
------
then it continues with the code if the data exists. However, it only checks the first record! it doesnt check every record to see if the data is anywhere else.
can someone help?
ComputerCop911
ASP/HTML Programmer