|
|
|
|
|
| | |
| |
vbscript active server pages ASP vbscript SQL database informix oracle SQL Server Perl CGI Delphi PHP source code code sample samples program CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
|
|
Subject: |
checking for duplicate logins + some |
|
From: |
Cole Dannewitz |
|
Date: |
8/22/2000 11:19:03 AM |
|
IP: |
64.22.3.190 |
I have a form that gets posted to an asp. I know how to check to see if the persons first name and last name is in the database and redirect them to a page asking them if they want to go back and make changes or if they want to continue with the record. The go back option works fine but the continue portion does not. It seems that I am not carrying any of the data over. How do I do this? I am using the following code to see if the names are already in the database. --
SET rscheck = conn.Execute("select FirstName, LastName FROM EmployeeInfo WHERE "_
& "FirstName = " & Request.Form("First_Name") & " and "_
& "LastName = " & Request.Form("Last_Name") & "")
if not rscheck.EOF then
response.redirect "duplicate_login.asp"
else
end if
%>
How do I carry the form data over to duplicate_login.asp and then again to another page that will do the processing? Please help!
Thank you,
Cole
|
Follow Up - Re: checking for duplicate logins + some - outsider 8/25/2000 3:59:03 AM
|
|

|
|
|
|
|
|
|
|
|
|
|
|
|