Ask a Question related to ASP.NET General, Design and Development.
-
David Hearn #1
Best way to move data across multiple pages?
I am trying to build a few pages basically emulating a wizard that you
might find in a Windows product. A few fields to fill out on one page,
move to the next, then the next. Finally, at the end, submit the data
from all the pages and save it all to a database or send it via email.
What is the best way to hold this data so that it there at the end for
posting to the database or email?
Thanks in advance!
David Hearn Guest
-
Coursebuilder - tracking data across multiple pages
I have created a 30 page e-learning course in Dreamweaver using the CourseBuilder extension. The last 6 pages are quiz pages with 3 questions on... -
combining multiple pages into one page with no loss of data
I don't no when it happened but we used to be able to combine our letter head with other documents pretty easily. here's how we did it. Open... -
Move pages?
Some editors have active draft pages in a directory that no longer exists (to launch a part of the website I moved all the files from an old/... -
Help! - Passing form data between multiple pages
Hi, I am working on a multiple pages survey, right now if my user fill out page 1, click next, then fill out page2, page3, his answer will be... -
How to move between pages
Is it possible to refresh a page from within codebehind when Response object is not available (say, from a user thread?). If so, can you please let... -
Steve C. Orr, MCSD #2
Re: Best way to move data across multiple pages?
If there are only a few pages to your wizard then the best approach would
likely to make each wizard screen into a panel on a single page. Then just
show & hide each panel in succession as appropriate. That way all your data
stays on one page and it's quite simple.
Some other (more complicated) approaches involve storing the data in staging
tables in your database in between pages, storing the data in session state,
using hidden fields, and/or storing the data in an XML structure or strongly
typed dataset.
--
I hope this helps,
Steve C. Orr, MCSD
[url]http://Steve.Orr.net[/url]
"David Hearn" <dhearn@comcast.net> wrote in message
news:dor8jvct11vo17vb6vph4b174jr6j8u0oa@4ax.com...> I am trying to build a few pages basically emulating a wizard that you
> might find in a Windows product. A few fields to fill out on one page,
> move to the next, then the next. Finally, at the end, submit the data
> from all the pages and save it all to a database or send it via email.
> What is the best way to hold this data so that it there at the end for
> posting to the database or email?
>
> Thanks in advance!
Steve C. Orr, MCSD Guest
-
David Hearn #3
Re: Best way to move data across multiple pages?
Thanks Steve! That was the answer I was looking for. I guess I just
never thought about using the panels that way.
On Fri, 8 Aug 2003 23:26:37 -0700, "Steve C. Orr, MCSD"
<Steve@Orr.net> wrote:
>If there are only a few pages to your wizard then the best approach would
>likely to make each wizard screen into a panel on a single page. Then just
>show & hide each panel in succession as appropriate. That way all your data
>stays on one page and it's quite simple.
>
>Some other (more complicated) approaches involve storing the data in staging
>tables in your database in between pages, storing the data in session state,
>using hidden fields, and/or storing the data in an XML structure or strongly
>typed dataset.David Hearn Guest



Reply With Quote

