> Is there any way to test if a session is active without actually kicking one 
> off ?

if (session id)
   // have a session
else
   // no session
end if

'session id' returns an empty string if there is no session, and I am taking 
advantage of the extended boolean test feature of Active4D that lets me treat a 
string as a boolean, where empty is false and non-empty is true. If you are 
more comfortable with the standard (circa 1989) syntax, it would be:

if (session id # "")


Kind regards,

   Aparajita
   www.aparajitaworld.com

   "If you dare to fail, you are bound to succeed."
   - Sri Chinmoy   |   www.srichinmoy.org

_______________________________________________
Active4D-dev mailing list
[email protected]
http://mailman.aparajitaworld.com/mailman/listinfo/active4d-dev
Archives: http://mailman.aparajitaworld.com/archive/active4d-dev/

Reply via email to