MVC上传文件

HTML代码    

        
附件:

后台代码

        public ActionResult BaoMing()
        {
            return View();
        }

        [HttpPost]
        public ActionResult BaoMing(HttpPostedFileBase img)
        {
            img.SaveAs(Server.MapPath("~/" + img.FileName));    //文件在项目根目录下
            return Content("上传成功");
        }

你可能感兴趣的:(MVC上传文件)