Session variable in javascript

  • Thread starter Thread starter sramruttun
  • Start date Start date
sramruttun said:
How can retrieve a Session value in javascript which I had set in
code-behind ?

By putting it into a hidden field from the code-behind?

Luc K
 
Session variables are mainly used on the Server side. You may use cookies if
you need to read them from the client in Javasript.
 
Back
Top