Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的操作方法中,我目前将 3 个文件作为单独的 HttpPostedFileBase 对象传递。我想将它们作为 IEnumerable 容器传递,但我如何才能找出它们来自哪个上传控件?
谢谢。
不确定我是否完全理解没有代码的意思,但是...
public ActionResult Upload(HttpPostedFileBase file1, HttpPostedFileBase file2, HttpPostedFileBase file3) {
在您接收帖子的方法中,file1、2、3 等是客户端字段的名称,将为您提供该信息。
如果以上不是您需要的,请提供更多信息。