ASP.NET中在一般处理程序中使用session的简单介绍
代码如下:<%@ 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”;
下载地址
用户评论