Results 1 to 2 of 2

Thread: application.set???

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Feb 2002
    Location
    London UK
    Posts
    29
    This will set an application scope variable, available to all instances of your application. That is the value is shared between all users of your app. One thing to keep in mind is the situation where more than one user changes the value simultaneously. You can do this

    application.lock()

    ' set your application variable

    application.unlock()

    ' carry on

    This will serialize all attempts to change this variable.

    Hope this helps.
    Simon

  2. #2
    Member
    Join Date
    Dec 2000
    Posts
    53
    im thinking that im giong to want to be choosing session.set then

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width