internet explorer ashx file problem
Posted
by vondip
on Stack Overflow
See other posts from Stack Overflow
or by vondip
Published on 2010-04-13T20:11:53Z
Indexed on
2010/04/13
20:12 UTC
Read the original article
Hit count: 511
My problem is a bit complicated: I am writing in c#, asp.net and using jquery
- I have a page that sends requests to the server using jquery's ajax method.
- I have a ashx file (handler) to respond to these request.
- User can perform several changes on several pages, then use some method that will call the ajax method.
- My ashx file reads some values From the session variables and acts accordingly.
This works fine in all browsers but in internet explorer. In internet explorer the session seems to hold old information (old user ids'). It's incredible, the same code works fine in firefox, chrome and safari but fails with ie.
What could be causing it? I have no clue where to even start looking for a solution.
btw, Sorry for the general title, couldn't figure out how to explain in just few words.
Thank You!
© Stack Overflow or respective owner