I am using ASP.NET page methods with jQuery.... How do I get the value of a session variable inside a static method in C#?
protected void Page_Load(object se
HttpContext.Current.Session["..."]
HttpContext.Current gets you the current ... well, Http Context; from which you can access: Session, Request, Response etc
HttpContext.Current