Hi there-
We are in the process of implementing a new website. We have an issue where the "support us" page cannot work without the user being logged into the website. The reason that the anonymous user account won’t work with the "support us" page is that we save a lot of information to session variables on this page. However, session variables get deleted when someone logs in or registers. Do any of you have to maintain session variables from anonymous user to authenticated user? If so, how do you do that?
Thanks,Janine MarinoManager of Ticketing and Patron ServicesHubbard Street Dance Chicago
Janine,
We just clumsily deserialize all the session variables into a Hashtable, and then "re-serialize" (to coin a phrase) on successful login. There may be a more clever way to transfer a session now, though.
--Gawain