在ashx中使用session
作者:互联网
原文链接:http://www.cnblogs.com/nightly/archive/2013/01/07/2848761.html
如果你要保证数据的安全性,你可以在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变量名称"]
转载于:https://www.cnblogs.com/nightly/archive/2013/01/07/2848761.html
标签:Web,Session,System,session,ashx,使用,using 来源: https://blog.csdn.net/weixin_30689307/article/details/98458946