为什么 SWFUpload 不执行 upload.aspx 代码,为什么它将所有文件保存到根目录?
我正在使用 SWFUpload v2.2。
在 IE 中 (8):
如果我上传一个非常小的文件(16kb):
1) 文件出现在 upload.aspx 所在的根目录中。
2) 执行 upload.aspx.cs 上的 Page_Load。
3) 文件实际上是由Page_Load过程处理的,处理后的文件保存在正确的位置。
如果我上传普通文件 (1.5 MB):
1) 文件出现在 upload.aspx 所在的根目录中。
在 Firefox (3.5.7) 中:
无论文件大小,它:
1) 该文件出现在 upload.aspx 所在的根目录中。
为了确定起见,我在 web.config 中有 maxRequestLength="30000"executionTimeout="3000" .
在构造函数的设置对象中,我有:
文件大小限制:“10 MB”,
file_types: ".",
file_types_description:“所有文件”,
所以我的问题是:
文件如何保存在根目录中(以及为什么)?
为什么 Page_Load 仅在我使用 IE 并上传非常小的文件时执行?
I am using SWFUpload v2.2.
In IE (8):
If I upload a very tiny file (16kb):
1) The file appears in the root directory where upload.aspx is located.
2) Page_Load on upload.aspx.cs is executed.
3) The file is actually processed by the Page_Load procedure, and the processed file is saved in the correct location.
If I upload a normal file (1.5 MB):
1) The file appears in the root directory where upload.aspx is located.
In Firefox (3.5.7):
No matter what size the file is, it:
1) The file appears in the root directory where upload.aspx is located.
I have maxRequestLength="30000" executionTimeout="3000" in the web.config just to be sure.
In the setting object for the constructor I have:
file_size_limit: "10 MB",
file_types: ".",
file_types_description: "All Files",
So my questions are:
How is the file getting saved in the root directory (and why)?
Why does Page_Load only execute when I am using IE and uploading very tiny files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我之前的文件上传解决方案的一小部分残留在 web.config 中,删除它后,奇怪的行为停止了。
A tiny piece of my previous file uploading solution was lingering in the web.config, and after removing it the odd behavior stopped.