page output contains output from another request

  • Thread starter Thread starter jmr
  • Start date Start date
J

jmr

Hi All,

I've found a post in google group about this problem but unfortunately,
there was no answer. Sorry to ask again but maybe the initial poster has
a fix now.

The problem we have with our .net application is that sometimes the
output page contains part of other pages that are being called by
another user using the same server (but with a different login).

Is it a bug with IIS/aspnet ?
Is there a workaround ?

Thanks,
Jean-Michel
 
its a bug in your code. you are probably storing page state in a static,
so one request data overwrites another. most common cause is using a vb
module.

-- bruce (sqlwork.com)
 
bruce said:
its a bug in your code. you are probably storing page state in a static,
so one request data overwrites another. most common cause is using a vb
module.

-- bruce (sqlwork.com)

Hi Bruce,

Thanks for your answer.
Actually, I'm not storing any page state nor using vb module.
All the code in in the aspx pages.

The (weird) behaviour is as follow:

User 1 is calling an aspx page say page1.aspx
At the same time, user 2 is calling another page say page2.aspx

User 1 get the right output from page1.aspx
User 2 get output from page2.aspx + part of the output of page1.aspx

It is not all the time but it is quite worrying because user 2 does not
have to know what user 1 is doing.

Any idea ?

Regards,
Jean-Michel
 
Back
Top