I am trying to access the Session variable in Asp.Net ashx handler as shown below.
public void ProcessRequest (HttpContext context) {
context.Session["VariableName"] = Id;
}
But the context.Session is always Null inside the above method. How do I access Session objects in ashx file?