如何在ashx页面获取Session值(未将对象引用设置到对象的实例) (转)

如何在ashx页面获取Session值(未将对象引用设置到对象的实例)

分类: .Net学习笔记 Session 902人阅读 评论(1) 收藏 举报

在一般事务处理页面,可以轻松的得到 Request,Response对象,从而进行相应的操作,如下:

  1. HttpRequest Request = context.Request;  
  2.   
  3. HttpResponse Response = context.Response;  


但是要得到 Session的值就没有那么简单了。比如你要在ashx得到保存在Session中的登录帐号Session["userAccount"]

如果你只是context.Session["userAccount"]的话是会报 “未将对象引用设置到对象的实例”的异常

所以,如果要想取Session中的值 ,需要如下所示

1、引入 命名空间:

  1. using System.Web.SessionState;  


using System.Web.SessionState;

2、实现IRequiresSessionState接口,具体如下  

 

    1.   /// <summary>  
    2.   /// $codebehindclassname$ 的摘要说明  
    3.   /// </summary>  
    4.   [WebService(Namespace = "http://tempuri.org/")]  
    5.   [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]  
    6.   public class AddUserInfo : IHttpHandler,IRequiresSessionState //就是这样显示的实现一下,不用实现什么方法  
    7.   {  
    8.   
    9.       public void ProcessRequest(HttpContext context)  
    10.       {  
    11.   
    12.     //这样你就可以如下 操作了  
    13.   
    14.                 if(context.Session["userAccount"] != null)  
    15.   
    16.    {  
    17.   
    18.      string account = context.Session["userAccount"].ToString();  
    19.   
    20.    }  
    21.   
    22.     //...继续下面的代码  
    23.   
    24.   }  
    25.   

posted on 2012-11-17 10:37  davidkam  阅读(630)  评论(0编辑  收藏  举报