使用 .aspx 页面将文件上传到服务器 (VB)

发布于 2024-11-09 03:27:40 字数 279 浏览 0 评论 0原文

我目前正在 .aspx 页面中开发一个应用程序,该应用程序在 IIS 服务器上使用 VB 脚本。我需要在我的 HTML 表单之一中上传图像。目前,代码使用 Form.Request("field_name") 从文本字段获取数据。

我想知道是否有与 PHP 的 $_FILES 等效的 ASP,因为我似乎无法在网络上找到任何与我需要执行的操作远程链接的内容,我找到的所有脚本对于这样一个简单的任务来说要么过于复杂,要么展示如何使用 C# 上传文件。

提前致谢。

I'm currently developing an application in .aspx pages which use VB Script on an IIS server. I need to upload an image in one of my HTML forms. Currently the code uses Form.Request("field_name") to get the data from the text fields.

I would like to know if there is an ASP equivalent of PHP's $_FILES as I can't seem to find anything on the web that's remotely linked to what I need to do, all of the scripts I find are either hugely overcomplicated for such a simple task, or show how to upload a file using C#.

Thanks in advance.

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

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

发布评论

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

评论(1

≈。彩虹 2024-11-16 03:27:40

您需要 Request.Files

For Each item As HttpPostedFile In Request.Files

    <Deal with files here>

Next

更多信息:在 ASP 中上传文件.NET

You need Request.Files

For Each item As HttpPostedFile In Request.Files

    <Deal with files here>

Next

More Info: Uploading Files in ASP.NET

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