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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Session_OnEnd

Status
Not open for further replies.

lasitha

Programmer
Jun 7, 2003
38
0
0
LK
Dear Mr/Ms. simonchristieis,shaddow.

I'm sure that I'm running same code at globle.asa in
Code:
Sub Session_OnEnd
    Application.Lock
    strSesId = Session.SessionID
    deleteSessionID = CTCiNet.DelSessionID(strConnString,CStr(strSesId))
    Application.UnLock    
End SUb

could you pls help,
Reg.
Lasitha Alawatta
 
Where are these setup at?

strSesId = Session.SessionID
deleteSessionID = CTCiNet.DelSessionID(strConnString,CStr(strSesId))
 
You can't share variants between subs in the global.asa file. If you need to share a connection string or an object, you either need to put it in an application variant (Application("myvar")) or recreate the object or variant.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top