session and sql

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hey all,

just wondering if i'm doing something wrong or not understanding concept:

i've configured webconfig in 2 asp.net apps to use sql server session state.
i start the first app and save a session variable then redirect to the
second app and try to recall the same session variable but it's not there.
any ideas?

thanks,
rodchar
 
Session state is not shared across applications. They are completely
separate. Even if they did share sessions, your session IDs are going
to be completely different between the applications.

Regards
Ray
 
Back
Top