Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 jQuery uploadify 插件在 ASP.NET 中上传文件。在上传文件之前,我可以访问像 userId 这样的会话变量。但是当我立即点击上传时,我丢失了会话变量。当我访问 Session [ _UserId] 。可能是什么原因。我在做什么错误?
谁能帮我?
要通过此插件上传图像,我相信您使用了 ashx 处理程序,并且可能您正在使用会话。
为了获得会话,处理程序类必须实现 IReadOnlySessionState 接口。
例子 :
using System.Web.SessionState; public class Handler : IHttpHandler, IReadOnlySessionState { // your stuff }
希望这会有所帮助!