使用 .aspx 页面将文件上传到服务器 (VB)
我目前正在 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要
Request.Files
更多信息:在 ASP 中上传文件.NET
You need
Request.Files
More Info: Uploading Files in ASP.NET