I know creating a session variable takes up memory and you should always release the session
if it is not being used. Using session.Abandon method will clear out all session variables but
is there a way to clear out a particular session variable?
Is this how you do it?
Session("FirstName") = ""
and would it release the memeory
if it is not being used. Using session.Abandon method will clear out all session variables but
is there a way to clear out a particular session variable?
Is this how you do it?
Session("FirstName") = ""
and would it release the memeory

Best Answer