摘要: 继承System.Web.SessionState.IRequiresSessionState,使Session拥有读取和写入权限public class BankPay : IHttpHandler,System.Web.SessionState.IRequiresSessionState { public void ProcessRequest(HttpContext context) { context.Response.End(); } public bool IsReusable { get { retu... 阅读全文
posted @ 2011-10-11 14:34 HTL 阅读(202) 评论(0) 推荐(0)
htl