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
{
......
}
A blog about web application development mainly on backend side
Subscribe to:
Post Comments (Atom)
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...
-
Cross-platform compatibility: MAUI allows developers to write code that can run on multiple platforms with minimal modifications. Shared cod...
-
Introduction: OAuth 2 has become the de facto standard for securing APIs and enabling secure access to resources. In the context of Micros...
-
XmlDocument xdoc = new XmlDocument(); xdoc.Load(Server.MapPath("~/pp1.xml")); string PersonCount = xdoc.DocumentElement.SelectNode...
No comments:
Post a Comment