[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Ramesh

2/13/2006 2:29:00 PM

Hi,
I am facing a typical problem.
I have developed an asp.net application which is used in the intranet,
The problem is that one user get others data when working concurrently
There is no proxy configuration and no application variable
please some one help me to solve the problem
thanks
Ramesh



6 Answers

Joerg Jooss

2/13/2006 8:39:00 PM

0

Thus wrote Ramesh,

> Hi,
> I am facing a typical problem.
> I have developed an asp.net application which is used in the intranet,
> The problem is that one user get others data when working concurrently
> There is no proxy configuration and no application variable
> please some one help me to solve the problem

Are you using any static (Shared in VB.NET) variables in your page class
or business objects?

Cheers,
--
Joerg Jooss
news-reply@joergjooss.de


Ramesh

2/14/2006 4:40:00 AM

0

No I am not using any shared variables in my appln.

"Joerg Jooss" <news-reply@joergjooss.de> wrote in message
news:94fc507113e218c7fefd0fb913d4@msnews.microsoft.com...
> Thus wrote Ramesh,
>
> > Hi,
> > I am facing a typical problem.
> > I have developed an asp.net application which is used in the intranet,
> > The problem is that one user get others data when working concurrently
> > There is no proxy configuration and no application variable
> > please some one help me to solve the problem
>
> Are you using any static (Shared in VB.NET) variables in your page class
> or business objects?
>
> Cheers,
> --
> Joerg Jooss
> news-reply@joergjooss.de
>
>


Joerg Jooss

2/14/2006 9:08:00 PM

0

Thus wrote Ramesh,

> No I am not using any shared variables in my appln.

Hm... it seems none of the usual root causes for such problems apply:

- HTTP caching
- Static variabels
- Shared cached content (Application, Cache)

Are you sure that it's not a bug in your application logic, like using the
wrong primary key to fill a DataSet?

Cheers,
--
Joerg Jooss
news-reply@joergjooss.de


Ramesh

2/17/2006 5:19:00 AM

0

hi,
I have checked my code,I don't find any such bug
ramesh
"Joerg Jooss" <news-reply@joergjooss.de> wrote in message
news:94fc5071144508c7ffca2f893c66@msnews.microsoft.com...
> Thus wrote Ramesh,
>
> > No I am not using any shared variables in my appln.
>
> Hm... it seems none of the usual root causes for such problems apply:
>
> - HTTP caching
> - Static variabels
> - Shared cached content (Application, Cache)
>
> Are you sure that it's not a bug in your application logic, like using the
> wrong primary key to fill a DataSet?
>
> Cheers,
> --
> Joerg Jooss
> news-reply@joergjooss.de
>
>


Joerg Jooss

2/17/2006 7:16:00 PM

0

Thus wrote Ramesh,

> hi,
> I have checked my code,I don't find any such bug
> ramesh
> "Joerg Jooss" <news-reply@joergjooss.de> wrote in message
> news:94fc5071144508c7ffca2f893c66@msnews.microsoft.com...
>> Thus wrote Ramesh,
>>
>>> No I am not using any shared variables in my appln.
>>>
>> Hm... it seems none of the usual root causes for such problems apply:
>>
>> - HTTP caching
>> - Static variabels
>> - Shared cached content (Application, Cache)
>> Are you sure that it's not a bug in your application logic, like
>> using the wrong primary key to fill a DataSet?

Sorry, but without further knowledge of your application and its design it's
just guesswork.

--
Joerg Jooss
news-reply@joergjooss.de


Peter Yao

2/28/2006 4:12:00 AM

0

post your code that has the cache object, you probably didn't separate the
cache by user.