1

在我的操作方法中,我目前将 3 个文件作为单独的 HttpPostedFileBase 对象传递。我想将它们作为 IEnumerable 容器传递,但我如何才能找出它们来自哪个上传控件?

谢谢。

4

1 回答 1

1

不确定我是否完全理解没有代码的意思,但是...

public ActionResult Upload(HttpPostedFileBase file1, HttpPostedFileBase file2, HttpPostedFileBase file3) {

在您接收帖子的方法中,file1、2、3 等是客户端字段的名称,将为您提供该信息。

如果以上不是您需要的,请提供更多信息。

于 2013-04-04T18:58:52.203 回答