标签:
在一般事务处理页面(即.ashx文件)中,想要使用 Request,Response很简单,但是要想使用Session对象就会报错:“未将对象引用设置到对象的实例”或者英文“Object reference not set to an instance of an object.”
那要如何才能使用Session对象呢?
需要执行2步:
1、引入命名空间:
using System.Web.SessionState;
2、使用Session的类要显式实现IRequiresSessionState接口:
/// <summary>
///OvertimeHandler 的摘要描述
/// </summary>
public class OvertimeHandler : IHttpHandler,IRequiresSessionState //加入显式实现声明就可以了
标签:
原文地址:http://www.cnblogs.com/diuleiloumou/p/4428094.html