2 pages to one

A

Alexey Smirnov

Is it possible to have 2 or more pages post to 1 page?
I want to have the user click on a button and have that result recorded
along with other information from another form page.

for such things you don't need to "post to another page". You can
update database and redirect to another page using
Response.Redirect(). Any logic common to many pages can be placed
within the base class or in a public class and used in any web form.
 
D

dancer

I'm sorry, I don't understand. I know how to redirect and I know how to
update a database. But I don't understand
"Any logic common to many pages can be placed within the base class or in a
public class and used in any web form."
 
A

Alexey Smirnov

I'm sorry, I don't understand. I know how to redirect and I know how to
update a database. But I don't understand
"Any logic common to many pages can be placed within the base class or in a
public class and used in any web form."

When you say, you want to have 2 or more pages post to 1 page, I
suppose you mean that 2 or more pages have a common logic, or not?
Maybe you can tell us in details what sort of application you do and
what do you have on your pages. Thanks!
 
D

dancer

If you look at the following Wal-Mart link, you will see that after clicking
"apply now" the user clicks "I agree" from a couple of pages, THEN he is
permitted to fill out a form.
I assume the "I agree" results are kept WITH the other information from the
next form, which is how I would want it. (I would only want ONE "I agree"
page, however. I would want to send the "I agree" answer along with the
form results by email, and maybe to a database. I know how to do the email
and database. I just don't know how to get the info from the "I agree" page
*with* the info from the form.

http://jobsearch.about.com/gi/dynam...stores.com/OnlineHiringCenter/initialPage.jsp

Thanks
 

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

Similar Threads

Microsoft fixes 'phishing' flaw 3
Email redirection 9
Photo Resizer 1

Top