![]() |
|
|
+ Search |
![]()
|
Mar 22nd, 2004 22:56
Jason Benson, Charlie Brown,
Depending on what you want to do you can:
session.contents.remove("MySession")
OR simply:
Session("MySession") = ""
Please note the 2nd method doesn't actually remove the session, however
it does set it to nothing, which is fairly common.
If you are asking about Cookies (seperate thing) then you would:
Response.Cookies("MyCookie") = ("")
Response.Cookies("MyCookie").Expires = Date() - 1000
HTH
jb