Z
zlf
Hello,
I try to use a custom HttpHandler to add something to session, then display
the original page.
public void ProcessRequest(HttpContext context)
{
context.Session["test"] = "test";
}
But, a empty page is rendered with this HttpHandler, should I add some
additional codes to ProcessRequest to make it display the page correctly.
Thanks
I try to use a custom HttpHandler to add something to session, then display
the original page.
public void ProcessRequest(HttpContext context)
{
context.Session["test"] = "test";
}
But, a empty page is rendered with this HttpHandler, should I add some
additional codes to ProcessRequest to make it display the page correctly.
Thanks