在asp.net mvc 页面里上传大文件到服务器端,需要如下步骤: 1. 在Control类里添加get 和 post 方法 // get method public ActionResult Upload() { return View(); } // This action handles the form POST and the upload [HttpPost] public ActionResult Upload(HttpPostedFileBase file) { // Veri