引用命名空间
using System.Web.SessionState;
继承接口:IRequiresSessionState
获取Session
string Creator = context.Session["operName"] == null ? "" : context.Session["operName"].ToString();
引用命名空间
using System.Web.SessionState;
继承接口:IRequiresSessionState
获取Session
string Creator = context.Session["operName"] == null ? "" : context.Session["operName"].ToString();