遇到问题:未将对象引用设置到对象的实例
那就在你的一般处理程序中加入红色背景的代码吧
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; } } } }
时间: 2024-10-21 23:42:33