Transaction problems

  • Thread starter Thread starter Ed
  • Start date Start date
E

Ed

hi,

I have an application on my intranet using asp.net/vb.net
Sometimes users open more than one window of the browser, loading the
same application and execute the same process on both windows.
I would like to avoid this behavior, but I don´t know the best way to
doing that.

If you know that, please let me known

tks
troqui
 
you can't, you should code your application to support this scenario.

there are actually two modes:

1) the user selectes new window from the file. this will share the same
session as the original (also the first new page will have the same
viewstate also)

2) the starts a new browser and navigates to the site - this will have a new
session.



-- bruce (sqlwork.com)
 
Back
Top