aspx_professional thread: passing variables from non-session to session-enabled page
Can I get form variables from a page with 'enableSessionState=false' into a page where 'enableSessionState=true'?
The website contains a PublicFolder area with sessionState disabled, and an authenticated PrivateFolder area that uses 'cookieless sessions' - eg url munging (to support mobile devices as well as desktop browsers).
I want the public area to have a global 'quick logon' on each page which will collect the user/pass values, and pass them into the Private area where sessions are supported (where I put an Auth token into users session). Or perhaps even do the auth in the PublicFolder and pass in the Auth token (class) to the PrivateFolder.
Where-ever I put the non-session vars (forms collection, viewState etc), they seem to disappear when entering the sessions-enabled area.
Thanks, Seb.