vb.net modules in ASP.Net

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have an ASP.net 2.0 website. This website have a module; Public Module
myModule.
Is all the data in this module shared and not thread safe?
 
yes the data objects shared between threads. its threadsafe if all the
data objects are threadsafe.

-- bruce (sqlwork.com)
 
I am not sure that you are correct.
I thought a module was converted to a static class and that all the data in
a module will be shared/static and not threadsafe.
 
Depends on do you mean having members too or just methods which take all
they need, as arguments
 
Back
Top