Connecting Tech Pros Worldwide Help | Site Map

session handling in javascript

Newbie
 
Join Date: Jul 2007
Posts: 5
#1: Aug 17 '07
Hi everyone,
I wanted to know weather we can handle session using javascript.
Simply if i can test weather session is valid or not(i.e expired or still existing) does my work.
I was trying for it from past a week if anyone could help i would be happy.

Thanks and Regards,
Vidya Sagar Reddy.
kestrel's Avatar
Moderator
 
Join Date: Jul 2006
Location: California!!!
Posts: 898
#2: Aug 17 '07

re: session handling in javascript


Im going to move this to the Javascript Fourm. Have a nice day!

--
Kestrel
Newbie
 
Join Date: Jul 2007
Posts: 5
#3: Aug 17 '07

re: session handling in javascript


Thanks and sorry i have posted at a wrong place
kestrel's Avatar
Moderator
 
Join Date: Jul 2006
Location: California!!!
Posts: 898
#4: Aug 17 '07

re: session handling in javascript


Dont worry too much about it. I get them all day long.
epots9's Avatar
Moderator
 
Join Date: May 2007
Location: Canada
Posts: 1,313
#5: Aug 17 '07

re: session handling in javascript


Quote:

Originally Posted by vijay0456

Hi everyone,
I wanted to know weather we can handle session using javascript.
Simply if i can test weather session is valid or not(i.e expired or still existing) does my work.
I was trying for it from past a week if anyone could help i would be happy.

Thanks and Regards,
Vidya Sagar Reddy.

javascript doesn't do sessions, it does cookies.

well....if u use ajax then you can create session variables (using php, asp.net,...).

good luck
Newbie
 
Join Date: Jul 2007
Posts: 5
#6: Aug 17 '07

re: session handling in javascript


Quote:

Originally Posted by epots9

javascript doesn't do sessions, it does cookies.

well....if u use ajax then you can create session variables (using php, asp.net,...).

good luck

@epots9

Thanks a lot buddy
I have done an example using ajax but for a big web page if we use ajax call for every hit is a costly work i think so i am trying for an alternative and less costlier. Can u suggest any alternative.

I am using only one page and in the same page i am playing with the javascript (like say hide and seek) but the session is only this which should be taken care .
epots9's Avatar
Moderator
 
Join Date: May 2007
Location: Canada
Posts: 1,313
#7: Aug 17 '07

re: session handling in javascript


then just create cookies with javascript, i guess when the page loads make sure that the cookie(s) is(are) valid. cookies and sessions are pretty much the same, cookies are stored client-side and sessions are stored server-side.
Newbie
 
Join Date: Aug 2007
Posts: 14
#8: Aug 17 '07

re: session handling in javascript


Quote:

Originally Posted by epots9

well....if u use ajax then you can create session variables (using php, asp.net,...).

would you be able to give an example of how i would use ajax to set an asp.net session variable?
epots9's Avatar
Moderator
 
Join Date: May 2007
Location: Canada
Posts: 1,313
#9: Aug 17 '07

re: session handling in javascript


Quote:

Originally Posted by ahoyer

would you be able to give an example of how i would use ajax to set an asp.net session variable?

in your asp.net page just create a session variable as u normally would
Newbie
 
Join Date: Aug 2007
Posts: 14
#10: Aug 17 '07

re: session handling in javascript


Quote:

Originally Posted by epots9

in your asp.net page just create a session variable as u normally would

Sorry, i should have been a little more specific, i know that in my asp.net behind code (say c#) i would just go like this in a method:

Expand|Select|Wrap|Line Numbers
  1. Session["varName"] = "some value";
what i was then wondering is how i could then use ajax or something in someway to call this from a javascript function. (i honestly dont know if this is possible, im pretty new to web dev, and i know little - nothing about ajax).

The reason why i wonder, is ive got an asp button, that when clicked i would like it to set the session variables, then open a new window (using javascript, window.open()) that will use those same session variables in some way.
epots9's Avatar
Moderator
 
Join Date: May 2007
Location: Canada
Posts: 1,313
#11: Aug 17 '07

re: session handling in javascript


the javascript doesn't get it directly. in your asp.net page u do all validation of the session there, then if its valid or not the page returns true or false (return statement is added by the programmer, you, and it returns whatever u tell it). then back in the javascript it will receive the true or false and based on that do whatever it is you wanted it to do, it will do that.
Member
 
Join Date: Sep 2006
Posts: 73
#12: Oct 14 '08

re: session handling in javascript


can javascript access session variable that define on vbcode in asp pages
acoder's Avatar
Site Moderator
 
Join Date: Nov 2006
Location: UK
Posts: 14,581
#13: Oct 14 '08

re: session handling in javascript


If you return something back as output from your ASP page, then yes. For example, if you output the session variable in your ASP page, then it should be available to JavaScript in the XMLHttpObject's responseText property.
Reply