为什么 SWFUpload 不执行 upload.aspx 代码,为什么它将所有文件保存到根目录?

发布于 2024-08-20 06:57:21 字数 853 浏览 4 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

罗罗贝儿 2024-08-27 06:57:21

我之前的文件上传解决方案的一小部分残留在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文