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

网络编程 2021-07-04 22:40www.168986.cn编程入门
asp. 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

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

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by