Click to See Complete Forum and Search --> : passing value from i form 2 another


reeta82
August 24th, 2003, 11:07 PM
i have a registration form where the student must enter their personal info(will be inserted in a personal_info table)then the student have 2 proceed and fill up the next form by entering what subjects he would like 2 take....now the problem is i dont know how to retrieve the identity number that has been entered in the previous form(personal info) to be inserted in the subject table...using asp...plz help...

srirammenon
August 25th, 2003, 11:18 PM
use hidden form fields in form2 to store the id entered in the form1. to create hidden form field, use the follwing code
<input type=text style="visibility:hidden" name="hidid">

Goodz13
August 26th, 2003, 08:18 AM
or
<input type="hidden" name="hidid">
;)