web sessions

Hi All,

is there anyway to limit the number of connections to a web app? I basically want my web app to be
only used by one person at a time? If another person attempts to connect it will tell them the system
is busy.

Thanks

You can do this with HandleURL. Check that Request.Path is an empty string and then check App.SessionCount to see how many sessions there currently are.

App.SessionCount did the trick, thanks.