Hi everyone,
I've a very very strange behaviour on my asp.net application.
Sometimes happens that when you load a page, there is a piece of code of another web page page being viewed contemporaneously by another visitor! It's really strange...
So if we have two pages, for example page1.aspx and page2.aspx, and we have two concurrent visitors, user1 and user2, user1 loading page1.aspx and user2 loading page2.aspx, sometimes what is actually rendered to client is:
for user1:
a first portion of rendered HTML from page1.aspx
a random piece of HTML page2.aspx being delivered to user2
the last portion of rendered HTML of page1.aspx.
I really do not know what's happening...
I'm using ASP.NET 2.0 and IIS 6.0 on a Win2003 server.
I thought that this behaviour was due to enableKernelOutputCache BUG (http://support.microsoft.com/kb/917072) but in my webconfig the enableKernelOutputCache is set to false, we've never had a "Cross Session" issue and our problem seems really different.
With that bug the ENTIRE "wrong" web page is delivered to client, not a mix of two pages...
If you have any idea or suggestion, please tell me, I don't know where to start from...
Any help will be really appreciated.
Thanks in advance...