Hi,
I am storing my login id and password in cookies and I redirect the site to worldpay for the user to make the payment.
When the user returns to the site after the payment, he is logged out. I don't want this to happen. How can I make use of the
login information and take the user to the purchased items page?
Should I make any change in the web.config file?
Thanks,
Zoran HorvatPosted Jul 21, 2011, 11:56 AM
On the server keep record of currently logged users in server-side session state. Make sure that server state is persisted because crash on the Web server may cause all current payments to be broken momentarily before end, which makes a lot of work for the support staff to correct then. Persistent server state ensures that Web all users will remain logged on as soon as Web server recovers from the crash and their payments can be processed to the end.
Zoran