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
Try this:
HttpContext.Current.Session["UserName"].ToString();