Hey all,
This may seem like a silly question but here's what I'm tryin to do:
I have an App variable to maintain a count of users currently taking an exam/test. Now, there may be some unforseen instances in which a user may quit the exam and the counter won't decrement (closing the window etc).
I have a Session variable to keep track of when an exam/test is being run.
I was thinking of adding a final check by placing the following code in Session_OnEnd:
Is it even possible to access a session variable like this?
Thanks,
Dave
This may seem like a silly question but here's what I'm tryin to do:
I have an App variable to maintain a count of users currently taking an exam/test. Now, there may be some unforseen instances in which a user may quit the exam and the counter won't decrement (closing the window etc).
I have a Session variable to keep track of when an exam/test is being run.
I was thinking of adding a final check by placing the following code in Session_OnEnd:
Code:
If Session("certificationViewed") = true Then
Application.Lock()
Application("CurrentExams")=Cint(Application("CurrentExams"))-1
Application.Unlock()
End If
Is it even possible to access a session variable like this?
Thanks,
Dave