Session data is being shared across multiple sessions

  • Thread starter Thread starter Shankar Reddy
  • Start date Start date
S

Shankar Reddy

Hi All,

Problem: Data is being shared across multiple sessions in ASP.NET!


Does anybody come across this kind of situation where session data or view
state data is being shared across different sessions? is it a bug in
ASP.NET? or is it some thing i have to take care programatically when we
develop asp.net application?



Thanks in advance.

Shan
 
most likely a bug in your code. you are probably storing data in a vb module
or shared property (static in c#)

-- bruce (sqlwork.com)
 
most likely a bug in your code. you are probably storing data in a vb module
or shared property (static in c#)

-- bruce (sqlwork.com)

(Just as a little addition) or cache

Cor
 
Nop,

Where are you keeing the shared data?
Are you generating somehow the session ID?

Cheers,
 
I was using output chache by mistake..



Ignacio Machin ( .NET/ C# MVP ) said:
Nop,

Where are you keeing the shared data?
Are you generating somehow the session ID?

Cheers,
 
Back
Top