In ashx: I'm putting data in list of entities & assinging it to session.
context.Session["objList"] = myEntityCollection;
I want to get this Session through response; in code behind. How it is achieved?
context.Response.ContentType = ???
.....
context.Response.Write(context.Session["objList"]);