在ashx文件中使用session的解决思路
时间:2020-12-21 17:50:03|栏目:.NET代码|点击: 次
如果你要保证数据的安全性,你可以在ashx中使用session验证。
如:你的index.aspx中使用jquery回调ashx数据,那么在index.aspx page_load时session["checked"]="true",在ashx中验证session是否存在。
但ashx中要获取session内容还需如下几步:
①导入命名空间
using System;
using System.Web;
using System.Web.SessionState;//第一步:导入此命名空间
②实现接口
publicclassMyWeb:IHttpHandler将此改为如下:
publicclassMyWeb:IHttpHandler,IRequiresSessionState//第二步:实现接口 到此就可以像平时一样用Session了
③调用方法
HttpContext.Current.Session["Session变量名称"]
如:你的index.aspx中使用jquery回调ashx数据,那么在index.aspx page_load时session["checked"]="true",在ashx中验证session是否存在。
但ashx中要获取session内容还需如下几步:
①导入命名空间
复制代码 代码如下:
using System;
using System.Web;
using System.Web.SessionState;//第一步:导入此命名空间
②实现接口
publicclassMyWeb:IHttpHandler将此改为如下:
publicclassMyWeb:IHttpHandler,IRequiresSessionState//第二步:实现接口 到此就可以像平时一样用Session了
③调用方法
HttpContext.Current.Session["Session变量名称"]
上一篇:C#调用Python模块的方法
栏 目:.NET代码
下一篇:asp.net下获取远程网页的内容之二(downmoon原创)
本文地址:http://www.codeinn.net/misctech/34938.html