Technical Question?

R

r

I have a website and user to access this site needs regsitration.
Registration includes 3 pages that are related to each other.
I want to insert to my Db fields of 3 pages at the end of page 3 after user
confirms.
How can I tranfser information between pages?
I think there are 3 ways to implement this :
1-Using hidden forms to transfer fields between pages.
2-Using Sessions to save fields
3-Insert directly into Db using SqlTransaction
Is there better way??
thanks in advance
 
R

randy.buchholz

I would just write each page of information into the database (you could use
a staging table but not necesssary, nor are transactions.
Write after each page, and if you want it will allow users to return to
unfinished work. Simply delete the recordsa if the user cancels.
 
R

randy.buchholz

I would just write each page of information into the database (you could use
a staging table but not necesssary, nor are transactions.
Write after each page, and if you want it will allow users to return to
unfinished work. Simply delete the recordsa if the user cancels.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top