Results 1 to 4 of 4

Thread: [RESOLVED] Setting a session variable in Javascript?

  1. #1

    Thread Starter
    PowerPoster
    Join Date
    Jan 2004
    Location
    Southern California
    Posts
    5,034

    Resolved [RESOLVED] Setting a session variable in Javascript?

    I'm wondering if it's possible to set a Session Variable in Javascript. I've been researching it and am finding mixed answers. Is there a way to do this and be able to reference that value in the code-behind?

    Thanks,
    Blake

  2. #2
    PowerPoster
    Join Date
    Jun 2001
    Location
    Trafalgar, IN
    Posts
    4,141

    Re: Setting a session variable in Javascript?

    There is no direct way of setting a session variable using javascript. Sessions are maintained on the serever and js runs client side. You could probably use ajax to call server code to set a session variable or maybe you could just use a cookie.

  3. #3

    Thread Starter
    PowerPoster
    Join Date
    Jan 2004
    Location
    Southern California
    Posts
    5,034

    Re: Setting a session variable in Javascript?

    Thanks Mark, I appreciate your response!
    Blake

  4. #4
    Frenzied Member tr333's Avatar
    Join Date
    Nov 2004
    Location
    /dev/st0
    Posts
    1,605

    Re: Setting a session variable in Javascript?

    HTML5 has introduced Local Storage. If you need support in older browsers (< IE8), check for availability with Modernizr and use a polyfill if required.

    http://www.w3.org/TR/webstorage/
    http://dev.opera.com/articles/view/web-storage/
    https://developer.mozilla.org/en-US/docs/DOM/Storage


    The alternative would be to use Cookies as MarkT suggested, but they come with the overhead of being sent with every request/response and are transmitted in plaintext unless they are specifically set to send over SSL.
    Last edited by tr333; Feb 13th, 2013 at 06:03 PM.
    CSS layout comes in to the 21st century with flexbox!
    Just another Perl hacker,

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width