Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

FSO in Application_OnEnd?

Status
Not open for further replies.

vasah20

Programmer
Feb 16, 2001
559
US
Can you use the FSO in Application_OnEnd?

I'm trying to use the Application_OnStart and Application_OnEnd to track the number of times that IIS gets stopped and started, and how long my site is offline for.

I can write the file with OnStart, but my OnEnd isn't firing...

Any suggestions?

leo
 
I've run into the same problem with the Session_OnEnd. I have code in the Session_OnEnd which is supposed to log users off of an imaging server. I also had FSO code in place to test this, but the Session_OnEnd was not firing. To remedy this, I duplicated the logoff code in the Session_OnEnd and put it into a separate ASP file. This ASP file is called when the user shuts the browser down, or clicks on a provided "Logoff" button.

I'm not sure how easy it would be for you to trap for when the Application_OnEnd should fire. I hope this helps.

Rich
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top