Session problem

  • Thread starter Thread starter Filiz
  • Start date Start date
F

Filiz

On the NT workstation, I am setting value to session("xx"). When I
set at first, it is getting my value, but then I am setting another
value to session("xx") it's not getting new value and showing first
value. I have tried on another client which Win XP installed on.
There is not a problem on this client.

ASP.NET is working on Win2000,Framework 1.1
Client is working on NT Workstation,Explorer 6.0


Where is the problem ?
 
The session state is managed entirely on the server, so the client operating
system should not matter at all. I would set about trying to determine if
this code branch (that sets the second value for the session object) is
being called, and if not, why not?
 
I have found the problem. It was releated with client's internet settings.
On the internet settings- General tab - Settings - "Automatically" was
checked. I have changed this option to "Every visit to the page" then
problem resolved. "Automatically" option is not working . On this client
internet explorer patches installed but on the about menu, i didn't see
patches which is installed on. The problem was depended on this. I think so.
This is interesting a problem, isn't it ?
 
Back
Top