关于在App_Code文件夹自定义类中Session无法使用

由于前台页面需要调用App_Code中自定义类的函数,但在自定义类中找不到Session,解决方法如下:

 新建一个类session,并自己定义函数GetSession(),引用命名空间 System.Web

  

 using System;
using System.Collections.Generic;
using System.Linq;
using System.Web; public static class session
{
public static object GetSession(string SessionName)
{
return HttpContext.Current.Session[SessionName];
}
}
上一篇:NYOJ 187


下一篇:angular学习(一)-- Expression