Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Crystal 9 and Session Variables

Status
Not open for further replies.

bduke

Programmer
May 17, 2002
84
US
Using Crystal 9 and when we go to a page we use Session Variables to determine if they have access to update screens but when we come back we have lost the session variables to determine this. Anyone have any ideas or solutions.

Thanks.
 
You might try saving the session variables in hidden form fields and then pass them back to the calling page


Regards
Chuck LaRue
ADRS Computer Services
 
If you are using the "out-of-the-box" Crystal ASP pages, they have a call in them, Session.Abandon. That destroys all your session variables, both the Crystal related ones, like Session("oRpt") and any that you create. You need to modify the asp pages to not use Session.Abandon and instead individually destroy the Crystal objects that have been stored in session variables.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top