asp.net HttpHandler操作Session的函数代码

asp.net HttpHandler操作Session的函数代码,需要的朋友可以参考下。

复制代码 代码如下:


using System;
using System.Web;
using System.Web.SessionState;

public class HandleDataRequst : IHttpHandler, IRequiresSessionState
{

public void ProcessRequest (HttpContext context) {
//context.Session["name"]
}


这里的重点是一定要实现IRequiresSessionState或者IReadOnlySessionState,否则Session总是为null

当然这两个接口中没有规定任何方法。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wjjwdw.html