|
|
 |
RE: FN-FORUM Arrghghhh
date posted 14th January 2003 17:38
> dont know if it helps but with ASP.Net you can store
> sessions across multiple machines...
You can, of sorts, but it's not exactly what's required here. ASP.Net
can maintain session across a web-farm all serving the same site by
storing session objects in either an SQL database, or a remote enabled
server running on a single machine.
What's needed here is to pass session information from one site to
another.
As Richard said, the best way would probably be to have all the session
info, etc. as hidden fields on the final form and dispose of the
transfer.asp.
Failing that, then either save it to db or file in transfer.asp as Ecky
suggested.
AFAIK, the reason that add header isn't working is that you'll be adding
the headers to the response being sent when you call response.redirect
(response code 302 I think), but the client won't send these back in the
request to the secure page.
Darran.
========
Advertise with Freelancers.net +Additions+
http://www.freelancers.net/advert.php
Freelancers and Freelance Jobs:
http://www.freelancers.net
Forum FAQs:
http://freelancers.netrickery.com
To unsubscribe please email:
[EMAIL REMOVED]
If you have difficulties unsubscribing please email:
[EMAIL REMOVED]
|
 |
|