I have a page that I use multiple forms on. I bring in a recordset. Each record in the recordset is displayed in a separate form on the page. I want the user to be able to make changes to any of the records and save that record.
Currently, I get the recordset and buld the page as follows:
<!-- This is WorkHistory.asp -->
do while not rs.eof
<form action=workhistory.asp?FormName=<%rs("id"
%>>
<input type=submit>
</form
rs.movenext
loop
the page builds fine. But if the user makes changes to, say, the third form, how do I retrieve that data so that I can update it in the database?
TIA
Nate
Currently, I get the recordset and buld the page as follows:
<!-- This is WorkHistory.asp -->
do while not rs.eof
<form action=workhistory.asp?FormName=<%rs("id"
<input type=submit>
</form
rs.movenext
loop
the page builds fine. But if the user makes changes to, say, the third form, how do I retrieve that data so that I can update it in the database?
TIA
Nate