allow one user at a time to run aspx page

  • Thread starter Thread starter doronro
  • Start date Start date
D

doronro

Hi.

Is there any way to enable only one user to process an asp.net
application web form at one time while other forms in the same
application can (and should) support multiple users at the same time?

Thanks a lot

Doron
 
What is your business requirement responsible for this request. It is a
rather strange one.
 
Remeber that once the page is rendered they are done.
It's not really a logical methodology to try to impliment but you could
always set a flag that you read in the page load to check if someone has the
page "in use".
 
you can use "lock" statement, or Mutex class or similar thing! For help see
MSDN documentation :)

Brun.
 
Back
Top