Flash 和通用处理程序 (ASP.Net) 之间的问题
我现在使用 FancyUpload(闪存上传)来允许用户在小项目中上传文件。 当用户上传文件时,我使用通用处理程序在服务器中进行处理,但出现错误:使用 Firefox 或 Chrome 等(IE 除外)时无法在通用处理程序 (.ashx) 中获取会话
我读过这么多解决方案,最后发现Flash有一些bug,无法在Firefox或Chrome(IE除外)中发送cookie,所以我只是希望大家能帮助给我一个最好的方法来传递这个东西
也许我可以检查会话在开始将文件发送到服务器之前闪烁,或者在保存之前检查通用处理程序中的会话,请告诉我如何做到这一点,plzzzz
提前致谢,sry 4 我的 E
im now using FancyUpload (flash upload) to allow user to upload files in a small project.
I use Generic Handler to handler in server when user uploads his file, but i'm getting error: Can't get session in Generic Handler (.ashx) when using Firefox or Chrome etc except IE
I read so many solution and finally found out that Flash has some bug that can't send cookie in Firefox or Chrome except IE, so i just want all you guy can help give me a best way to pass this thing
Maybe i can check the session in Flash before it's start to send the file to the server or check session in Generic Handler before save it, just tell me how to do it plzzzz
Thanks in advance and sry 4 my E
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
执行此操作的标准方法是使用某个唯一密钥将会话中所需的任何数据存储在应用程序中。然后将唯一密钥传递给 Flash,Flash 可以将其作为 url 参数传递回服务器。然后,即使调用不是会话的一部分,您也可以使用 url 参数来获取必要的缓存数据。
The standard way to do this is to store whatever data you need from the session in the Application with some unique key. Then pass the unique key to Flash which can pass it back to the server as a url parameter. Then even though the call isn't part of a session, you can use the url parameter to get to the necessary cached data.
我在使用 SWFUpload 时也遇到过同样的问题。解决方案是将 sessionID 传递给 flash 对象(并使用 post 或查询字符串将其转发给上传处理程序)。要恢复会话,您可以在 Application_BeginRequest 事件(在 global.asax 中)创建“假”会话 cookie。
I've had the same problem with SWFUpload. The solution is to pass sessionID to the flash object (and forward it to the upload handler using post or query string). To restore session you can create 'fake' session cookie in Application_BeginRequest event (in global.asax).