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.
我有一个 ashx 处理程序,我想检查尝试通过 JSON 调用访问它的用户实际上是否有一个表单身份验证会话。这可能吗?
结果uploadify没有正确通过会话我发布了这个问题,所以每个人都可以看到!
答案在这里:
使用 ASP.NET MVC 上传(会话和身份验证)
如果用户已通过身份验证,您可以签入您的处理程序代码。auth cookie 将与您的 ajax 请求一起传递。
public void ProcessRequest(HttpContext context) { if (!context.Request.IsAuthenticated) { // 401 response } // authenticated }