steveg
02-19-2003, 01:56 PM
How do you release a session variable so it no longer exists.
Ive tried setting them to null, nothing and vbempty, the variable is empty but an instance of it is still there. I need to completely remove any trace of the session variable so it wil not be picked up using the following code
Dim x
dim session_list
for x = 1 to session.Contents.Count
session_list = session_list & "|" & Session.Contents.Key(x) & "~" & Session.Contents.Item(x)
next
Response.Write(session_list)
I thought this would be a simple procedure but I cant find any resources on the net to do this.
Any help would be greatly appreciated.
Thanks
Steve.
Ive tried setting them to null, nothing and vbempty, the variable is empty but an instance of it is still there. I need to completely remove any trace of the session variable so it wil not be picked up using the following code
Dim x
dim session_list
for x = 1 to session.Contents.Count
session_list = session_list & "|" & Session.Contents.Key(x) & "~" & Session.Contents.Item(x)
next
Response.Write(session_list)
I thought this would be a simple procedure but I cant find any resources on the net to do this.
Any help would be greatly appreciated.
Thanks
Steve.