multi user display problem

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

Guest

Hi,

I'm using ASP.NET and creating a web application. In two areas of the app,
I am dynamically building pages. One displays data on screen and the other
builds reports. Everything works fine when a single user is using the
application. When multiple users access these pages at the same time, the
display fouls up. It seems all controls are being created and displayed, but
not on each individual's browser. Some controls are missing on one browser,
while being duplicated on another.

Can anyone help with this problem?

Thanks
 
No, I originally was using static functions, but suspected them when this
behavior occurred. so I changed them to instance calls.
 
Aha! I believe I found the problem. After you asked about shared variables,
I went back in to see If I had missed any when I changed to instance
functions. Turns out, in a base class I had missed a Panel object I was
using to place the controls on the page. I removed static from it,
recompiled and it worked great!

Can't believe I missed it, but thanks for giving me your idea.
 
Back
Top