我有一个在 vb.net Web 应用程序中正常工作的uploadify 控件 - 但是每当我在 web.config (cookieless="true") 中打开 cookieless 会话状态时 - 它就会停止工作。
在我的上传 IHttpHandler 中,我可以看到 uploadify 存储的数据什么都不是:
Private Function Process(ByVal context As HttpContext) As String
Dim File As HttpPostedFile
File = context.Request.Files("filedata") ' Nothing
Dim FileExt As String = context.Request("fileExt") ' Nothing, etc
...
我猜闪存不尊重我的网址中的会话ID?当我打开无cookie会话状态时,关于如何保持uploadify工作的任何想法?提前致谢!