从 SWFUpload 获取上传的文件

发布于 2024-09-30 18:08:20 字数 125 浏览 3 评论 0原文

我的页面上有一个SWFUpload,我单击按钮,出现文件选择窗口,我选择一个文件,但我不知道如何获取上传的文件名?我什至不知道文件是否正在上传。

有人可以帮我吗?

我使用的是 ASP.NET VS2010

I have a SWFUpload on my page, I click the button and the file selct window comes up, I select a file but I do not know how to get the filename that was uploaded? and I dont even know if the file is being uploaded.

Can anyone help me please?

I am using ASP.NET VS2010

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

鹊巢 2024-10-07 18:08:20

我目前正在开发 swfupload,但使用的是 java。我或许可以回答你的问题。

因此,在您选择文件后,Flash 上传将准备您的文件以供上传。它将把请求发送到 upload_url。对 upload_url 的调用就像发送带有
<输入类型=“文件”名称=“文件数据”/>因此,如果您在多部分发布后获得文件数据,则可以访问您的文件。换句话说,它就像一个上传文件的 html 页面。

如果您需要更多帮助,请告诉我。

I am currently working on swfupload but in java. I may be able to answer your question.

So after you select a file, the flash upload will prepare your files for upload. It will send the request to the upload_url. This call to upload_url is like sending a request with a
< input type="file" name="Filedata"/ > so you can access your file if you get the Filedata after the multipart post. In other words, its just like an html page uploading your files.

Let me know if you need more help.

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