Forum Moderators: open
try to unset the variable. this will indeed detroy it. if it's not cookie related or a server variable. please check, ie make a debug output to display the var after you set it to a zero length string to check wether this was successfull or not.
in vb there is no explicit command to unset a variable. maybe you can use the redim command to do so.
set myvar = null ( in VB)
You should destroy all of your non-data objects as well in ASP becuase they can suck of memory if left assigned.
Any DB connections, SQL statements, ADODB objects, etc. all should be nullified when you are finished with them. ASP doesn't have a very efficient garbage collection mechanism.