Hey. I'm new to ASP, but I have been working with PHP for a little while. In PHP there is a Session function. Does ASP have the same function or a similar one? Thanks for any help you can give me.
You can have session variables
session("userName") = "Mike"
You can kill a session
session.abandon
You can make things happen when sessions start and end in the global.asa file
sub session_onStart
end sub
sub session_OnEnd
end sub
Programming today is a race between software engineers striving to build better and bigger idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. - Rick Cook (No, I'm not Rick)
Thanks for a quick response. It really helps. Do you have any links with good references for sessions. I did a google search and I'm not really finding examples of using sessions. Thanks again.
Programming today is a race between software engineers striving to build better and bigger idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. - Rick Cook (No, I'm not Rick)
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.