Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Input form to submit info to two asp pages

Status
Not open for further replies.

monaamit

Technical User
Feb 11, 2005
14
US
Hello,

I do not know ASP at all. I have working on ASP Page already in production. The page submit the info to SQl table through Insert ASP page. After inserting successfully the insert page is redirected to thankyou page which sends email to clients that their form is submitted (internet). My users want to have the details on the page to also be submitted through email(intranet) to them. Is it possible to submit the input box info to both insert.asp and thankyou.asp at the same time.

Thanks,
 
No, but it's quite possible to perform both tasks on the insert.asp page, then redirect to the thankyou.asp page.

You could also set server-side cookies on the insert.asp page for the thankyou.asp page to read and send email with, too, but I prefer to keep that kind of server-side action in a separate page from those that display to prevent someone from repeating an action if they refresh the page.

Lee
 
The insertpage is passing the info to thankyou page through a querystring. I problem is that I am need to send a memo field that has 8000 characters to Thank you page, I cannor redirct through query string.
 
Then do both operations on the insert.asp page and then redirect to the thankyou.asp page, which was my first suggestion. My second suggestion involved cookies, not querystrings.

Lee
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top