session and sql ques 2

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

Guest

hey all,

if your using sql server as session state does this enable you to use it as
shopping cart concept. for instance could you have a user fill out some info
save it then on another computer continue with that same session?

thanks,
rodchar
 
No, session is available only available when the session is active.
Once the session times out it is removed.

Anyway, opening a browser on another computer would start a new session.

What you would need to do is either store the shopping cart information
in a cookie or in a database and retrieve it when the user logs in.

Regards
Ray
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top