Connecting Tech Pros Worldwide Help | Site Map

Session data is being shared across multiple sessions

Shankar Reddy
Guest
 
Posts: n/a
#1: Nov 18 '05
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


bruce barker
Guest
 
Posts: n/a
#2: Nov 18 '05

re: Session data is being shared across multiple sessions


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)


"Shankar Reddy" <peddireddy999@hotmail.com> wrote in message
news:%23hHb3SUiEHA.1276@TK2MSFTNGP09.phx.gbl...[color=blue]
> 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
>
>[/color]


Cor Ligthert
Guest
 
Posts: n/a
#3: Nov 18 '05

re: Session data is being shared across multiple sessions


[color=blue]
> most likely a bug in your code. you are probably storing data in a vb[/color]
module[color=blue]
> or shared property (static in c#)
>
> -- bruce (sqlwork.com)[/color]

(Just as a little addition) or cache

Cor


Ignacio Machin \( .NET/ C# MVP \)
Guest
 
Posts: n/a
#4: Nov 18 '05

re: Session data is being shared across multiple sessions


Nop,

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

Cheers,


--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation



"Shankar Reddy" <peddireddy999@hotmail.com> wrote in message
news:%23hHb3SUiEHA.1276@TK2MSFTNGP09.phx.gbl...[color=blue]
> 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
>
>[/color]


Shankar Reddy
Guest
 
Posts: n/a
#5: Nov 18 '05

re: Session data is being shared across multiple sessions


I was using output chache by mistake..



"Ignacio Machin ( .NET/ C# MVP )" <ignacio.machin AT dot.state.fl.us> wrote
in message news:Oym7pqdiEHA.2400@tk2msftngp13.phx.gbl...[color=blue]
> Nop,
>
> Where are you keeing the shared data?
> Are you generating somehow the session ID?
>
> Cheers,
>
>
> --
> Ignacio Machin,
> ignacio.machin AT dot.state.fl.us
> Florida Department Of Transportation
>
>
>
> "Shankar Reddy" <peddireddy999@hotmail.com> wrote in message
> news:%23hHb3SUiEHA.1276@TK2MSFTNGP09.phx.gbl...[color=green]
> > 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[/color][/color]
view[color=blue][color=green]
> > 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
> >
> >[/color]
>
>[/color]


Closed Thread