作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在尝试使用 上传多个文件
<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/
我有以下正则表达式 /[a-zA-Z0-9_-]/ 当字符串只包含从 a 到z 大小写、数字、_ 和 -。 我的代码有什么问题? 能否请您向我提供一个简短的解释和有关如何修复它的代码示例? //var
我是一名优秀的程序员,十分优秀!