标签:
1.需要设置表单的enctype="multipart/form-data"属性
2.在控制器中获取表单文件中数据
[HttpPost] public ActionResult AddBook(FormCollection form) { var s = HttpContext.Request.Files["file1"];//获取客户端上载的文件集合 s.SaveAs(HttpContext.Server.MapPath("~/Content/" + s.FileName));//指定目录下保存上载文件的内容 ViewBag.bookinfo = s; return View(); }
在View页面的代码:
<body> <div> @ViewBag.bookinfo <form name="form1" method="post" enctype="multipart/form-data"> 文件保存:<input type="file" name="file1" /> <input type="submit" value="保存" /> </form> </div> </body>
标签:
原文地址:http://www.cnblogs.com/szmgo/p/5182045.html