ASP Lifetime
Any indications concerning when ASP support and tech is stopped from MS?
When is it e.g. not possible to compile/run code from a newer IIS version?
Any indications concerning when ASP support and tech is stopped from MS?
When is it e.g. not possible to compile/run code from a newer IIS version?
I have created a small activex dll to do a background task on my web server. I
fire it off with a set myjob = server.createobject(myactivex) and it runs.
I do not do a set myjob = nothing and so it seems to keep working even after
the initiating session is closed with session.abandon.
Question... what will be the lifetime of this object and is there a way to tell
if it is dead and needs to be reset... after the session is abandoned I no
longer have a reference to it (myjob)
I am on page page1.asp and I have a reference to an ASP Vbscript object. I need to use Server.Execute("page2.asp") and want to pass a reference to this object using a session variable. Code:
View Replies View Related