遇到問題:未將對象引用設置到對象的實例
那就在你的一般處理程序中加入紅色背景的代碼吧
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Data; using System.Web.SessionState; //引用命名空間 namespace gl.webweb.gl_web.ashx { //實現接口 public class login : IHttpHandler, IRequiresSessionState { public void ProcessRequest(HttpContext context) { } public bool IsReusable { get { return false; } } } }