Hi Ken, It depends on how you're sending the data to the other site and whether the response is immediate or not. If it's not immediate, then the session will expire and you'll lose the data in memory, so you need to persist it in a database, then look it up when you get the response and send the email. If it's an immediate response the session data should still be available. The database is probably the most reliable method. I'm assuming this is an online payment system... what I've done with these before is added the transaction to a database table before the data is sent to the payment processing website, and send the ID of the transaction record along with the data. The payment processing website then passes that ID back along with whether the transaction succeeded or not. Then you look up the transaction in your database and deal with it accordingly. Obviously that sort of thing depends on what sort of service your payment provider offers. Dan
________________________________ From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of kejeckam Sent: 01 June 2005 08:00 To: [email protected] Subject: [AspClassicAnyQuestionIsOk] session issue I have just finished my app. This app collects data from customers and needs to have a copy of the data eg. the customer number and amount paid-in to be held in memory, then it send s same data to another website for processing. After processing by the other website, the success or failure of the transaction is been redirected to a page on my site. I need to know how to make sure the page understands the session been returned so I can send an email to the office workers notifying them with those data stored in memory. Please can anyone help with detailed info Ken ________________________________ Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/AspClassicAnyQuestionIsOk/ * To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED] subscribe> * Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service <http://docs.yahoo.com/info/terms/> . [Non-text portions of this message have been removed] Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/AspClassicAnyQuestionIsOk/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
