ASP.Net一般处理程序Session用法

Posted qqhfeng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ASP.Net一般处理程序Session用法相关的知识,希望对你有一定的参考价值。

1.在aspx和aspx.cs中,都是以 Session["type"]="aaa" 和 string aaa=Session["type"].ToString() 或使用

HttpContext.Current.Session[strSessionName] = strValue;进行读写。

而在一般处理程序ashx中,Session都要使用context.Session,读写方法不变。

2.在ashx文件中,若要对Session进行成功的读写,要添加命名空间和接口,否则context.Session["type"]读出的总是null。

命名空间:using System.Web.SessionState

增加接口:IRequiresSessionState

代码如下:

 

public class pagingQuery : IHttpHandler, IRequiresSessionState

string type =context.Session["type"].ToString();

以上是关于ASP.Net一般处理程序Session用法的主要内容,如果未能解决你的问题,请参考以下文章

求ASP.NET关于session的用法。

asp.net C# 中用session传递数据的用法

[转]菜鸟程序员之Asp.net MVC Session过期异常的处理

ASP.NET Session详解

ASP.NET 通用处理程序和会话

asp.net 上传文件到一般处理程序中获取不到文件