ashx文件中使用session提示“未将对象引用设置到对象的实例”

代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data;
using System.Web.SessionState;

namespace friends {
    
/// <summary>
    
/// Handler 的摘要说明
    
/// </summary>
    public class Handler : IHttpHandler, IRequiresSessionState {

        
public void ProcessRequest(HttpContext context) {
            context.Response.ContentType 
= "text/plain";


···

 

 

System.Web.SessionState.IReadOnlySessionState 为只读会话的接口
System.Web.SessionState.IRequiresSessionState 为可读可写的

 


posted @ 2010-12-07 22:04  tonySuen  阅读(2238)  评论(2编辑  收藏  举报