I'm trying to pass some values much like the tutorial.
my first page is login_form.html
<body bgcolor="white" text="black">
<!-- Begin form code -->
<form name="form" method="post" action="checkExist.asp">
ID: <input type="text" name="ID" maxlength="20" size="20">
<input type="submit" name="Submit" value="Submit"><br>
</form>
<!-- End form code -->
i know that on checkExist.asp, to get the information sent i need to do...
Request.Form("ID")
how can i send this same information to another asp page once i do
Response.Redirect "checkAgreement.asp
and how can i tell checkAgreement.asp to check the DB slots that i either found or added to from checkExist.asp