I have heard a lot of conflicting reports/advice and was wondering if someone
could finally put a question to rest for me. I am programming .asp (vbscript)
pages with IIS 6.0. My question is if I declare a variable within a .asp
page, how or when is it destoryed (cleared from memory)?
Does IIS 6.0 automatically destory it when the page closes out?
Do I need to manually close/destory it (Set somevariable=Nothing)?
I have heard that if you do not manually close out each variable you
declare, then you can create a memory leak within IIS 6.0...which would be
bad.
Though on the flip side I have heard that when you simply browse away from a
page, IIS 6.0 will automatically close the variables for you?
If in fact you do need to manually close out each variable you declare, is
there a debugging tool available that I could use to check my programming to
make I didn't forget to close out any variables? I have searched around the
net and have found nothing for .asp (vbscript) pages.
Thank you in advance you for advice!!