Why not share a session DB across both servers?

Since your users disable cookies you'll have a url that looks
like this anyway: http://www.myPHPserver.com/index.php?sid=12345
if you wanted to maintain session state

so, when redirecting to the ASP server do: 
header('location: http://www.myASPserver.com/default.asp?sid=12345')

then have default.asp open the DB that has the sessions for
the PHP server through ODBC or ADO or whatever and match the 
session id pulling out the stored info for that session.

-GED



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to