跪求:session丢失问题 (.ashx存session, .aspx取不到)
直接看代码:
using System.Web.SessionState;
[Serializable]
public class FilesUpLoad : IHttpHandler, IRequiresSessionState {
我在ashx 页面里面 将session 存放在:context.Session.Add("photoGraphyFile", listInfo);
},问题是在aspx.cs文件中:Session["photoGraphyFile"] =null;
这是什么原因呢?!急死了。试了好多方法,都取不到
------解决方案--------------------ashx中尝试
context.Current.Session["photoGraphyFile"] =listInfo;
------解决方案--------------------
参考