Thursday, March 1, 2012

Get or Set Session in ashx handler

If you need to share session in ashx handler just use System.Web.SessionState.IRequiresSessionState this Interface

 

Like

public class login : IHttpHandler, System.Web.SessionState.IRequiresSessionState
{
......

}

No comments:

Post a Comment

What is DaemonSet in Kubernetes

 A DaemonSet is a type of controller object that ensures that a specific pod runs on each node in the cluster. DaemonSets are useful for dep...