Wednesday, July 15, 2009

How do you end a session in asp classic?

I need the code that ends the session using asp classic.

How do you end a session in asp classic?
Session.Abandon





Or if you just want to blank out a bunch of variables you can do this:





Dim sName


For Each sName In Session.Contents


Session(sName) = ""


Next
Reply:You may want to check this site out. http://www.w3schools.com/


No comments:

Post a Comment