Procedure OnReleaseProcess
This event is fired before a process is released back into the pool, but after the HTTP request has been sent to the client.
This provides a hook for doing tasks that you don't want the client to wait for.
For example, cleanup tasks or sending emails. Note that you still don't want to do long running tasks here, since the process is still locked out of the pool and unavailable for handling the next request.
Note that this event is not sent after classic ASP sessions / requests.