gpt4 book ai didi

c# - 在 ASP.NET 中使用 HTML5 多文件上传

转载 作者:搜寻专家 更新时间:2023-10-31 21:59:35 24 4
gpt4 key购买 nike

我正在尝试使用 上传多个文件

<input id="testUpload" type="file" multiple="true"/>

(是的,我知道它在 IE 上不起作用)。但我的问题是我应该在代码中做什么来遍历每个文件并上传它?

我在努力

foreach(HttpPostedFile file in Request.Files["testUpload"]){

}

但是我明白了

foreach statement cannot operate on variables of type 'System.Web.HttpPostedFile' because 'System.Web.HttpPostedFile' does not contain a public definition for 'GetEnumerator'

我知道我可以为 multiple = "false" 做:

HttpPostedFile file = Request.Files["testUpload"];

然后对该文件进行操作。但是如果我选择多个文件怎么办?如何使用 foreach 遍历每一个?

最佳答案

您正在尝试迭代一个文件而不是集合。

改变

foreach(HttpPostedFile file in Request.Files["testUpload"]){

}

编辑 - 根据评论更改为 for 循环

for (int i = 0; i < Request.Files.Count; i++)
{
HttpPostedFileBase file = Request.Files[i];
if(file .ContentLength >0){
//saving code here

}

关于c# - 在 ASP.NET 中使用 HTML5 多文件上传,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14348451/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com