I have an ashx file (implementing the IRequiresSessionState interface) storing a value to session state like so:
context.Session.Add("answer", _answer);
In the code-behind of the aspx file which triggers the ashx call I try to access the session variable like so:
Context.Session["answer"].ToString()
and I get a NullReferenceException.
How do I need to go about writing and reading from session state in this context?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…