1. 首页
  2. 数据库
  3. 其它
  4. ASP.NET中在一般处理程序中使用session的简单介绍

ASP.NET中在一般处理程序中使用session的简单介绍

上传者: 2021-02-01 17:46:14上传 PDF文件 35KB 热度 9次
代码如下:<%@ WebHandler Language=”C#” Class=”ChangePwd” %> using System; using System.Web; using System.Web.SessionState; public class ChangePwd : IHttpHandler, IReadOnlySessionState { public void ProcessRequest (HttpContext context) { context.Response.ContentType = “text/plain”;
用户评论