我有一个在vb.net web应用程序中工作正常的uploadify控件--然而,每当我在web.config中打开无working会话状态(cookieless="true") -它就会停止工作。
在我的upload 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
...我猜flash没有使用我的url中的session id?当我打开无working会话状态时,你有什么办法让uploadify工作吗?提前感谢!
发布于 2010-01-19 02:45:23
您必须手动将会话ID作为参数进行传递。
在您的上传设置中找到您的目标script,并让您的脚本手动将会话ID添加到该地址。
https://stackoverflow.com/questions/2088243
复制相似问题