I have an generic handler in C# (.ashx) that should read the Session Variables. When sending a jQuery Ajax request to the generic handler, the Session variables are null.
I've tried to add IRequiresSessionState to the class, with no luck. In IE everything works ok. But in Google Chrome I can not make it work.
Any ideas?
Thanks,
jaan
Implement your handler with IRequiresSessionState like:
get session value:
context.Session["xyz"]