主要代码: 代码如下: using System; using System.Collections.Generic; using System.Text; using System.Web; using System.Web.SessionState; namespace MyHttpHandler { public class Class1:IHttpHandler,IRequiresSessionState { #region IHttpHandler成员 public bool IsReusable { get { return true; } }
public void ProcessRequest(HttpContext context) { context.Response.Write("handler处理"); } #endregion } }