G
Guest
Hi;
I have a page that is created from a class using:
<httpHandlers>
<add verb="*" path="report-create.aspx" type="ReportCreate"/>
</httpHandlers>
and the code is:
public class ReportCreate : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
....
The problem is that context.Session is null as is
HttpContext.Current.Session - how do I get the session object?
I have a page that is created from a class using:
<httpHandlers>
<add verb="*" path="report-create.aspx" type="ReportCreate"/>
</httpHandlers>
and the code is:
public class ReportCreate : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
....
The problem is that context.Session is null as is
HttpContext.Current.Session - how do I get the session object?