Multiple pages during a registration process

  • Thread starter Thread starter Sam
  • Start date Start date
S

Sam

I have multiple screens during a registration process. I have noticed that
most BIG registration websites are not using "hidden text input objects" to
carry the information from one page to another.

what would you suggest?
1) use hidden field objects for example <input type=hidden name=myobj>
2) store in cookies
3) save to a database and retrieve and save as the user goes thought the
pages. Even though they could abort the process mid stream.

Thanks.
 
Hi,

You could also use Sessions.

In .NET 2.0, we also have cross page postbacks, which I believe would help
in this scenario.
 
Back
Top