主要代碼: 代碼如下: 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 } }