Mulit-Page database entry form

  • Thread starter Thread starter Jeronimo Bertran
  • Start date Start date
J

Jeronimo Bertran

Hi,

I have a database record with a very large number of fields that need to be
entered so I need to write a data entry site using asp.net that will divide
the fields into multiple pages. Once all the pages have been entered the
user may save or cancel. How can I retain the values entered on previous
pages?

Thanks,

Jeronimo
 
The simplest way is to combine all your "pages" into a single page with an
individual panel representing each page. You can then show and hide each
panel in succession. This keeps all your data on one page, thereby
simplifying things considerably.
This should work well as long as you don't have more than a few such pages.
If you've got more than that then you'll need to resort to a more complex
solution, such as storing the data in temporary tables between pages, or
storing the data in Session State or hidden fields.
 
Back
Top