Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

display message if form field matches existing record

Status
Not open for further replies.

jmccolley

ISP
Jul 15, 2002
12
US
I have a form that needs to check to see if a number a user enters is already used in a recordset. I have a script to run through the records and compare the number for a match but how can I get a popup message to appear when the script I am using to check the number is a server side script? Can I load the numbers from the recordset into an array and then use client script to check for a match? If so, how? Thanks for any help.
 
try remote scripting. this will allow you to execute server side scripts to perform server-side tasks, including database queries, middle-tier business logic, and so on, while the client page is still active. your scripts are greatly simplified and the application can present a richer, more responsive interface to the user. after the server scripts has finished executing, you can check it's status and display the appropriate alert message
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top