.net MVC 文件上传


using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.IO;
 
namespace UploadFileTest.Controllers
{
    public class UploadTestController : Controller
    {
        // GET: UploadTest
        public ActionResult Index()
        {
            return View();
        }
 
 
        //这个view是用来选择上传文件的
        public ActionResult Upload()
        {
            return View();
 
        }
 
        //接收ajax提交的数据,并保存文件到服务器上
        [HttpPost]
        public string AjaxSaveAs(HttpPostedFileBase MyFile)
        {
            //得到的名字是文件在本地机器的绝对路径
            var strLocalFullPathName = MyFile.FileName;
            //提取出单独的文件名,不需要路径
            var strFileName = Path.GetFileName(strLocalFullPathName);
            //定义服务器的文件夹,用来保存文件
            var strServerFilePath = Server.MapPath("/docs/");
            //将接收到文件保存在服务器指定上当
            MyFile.SaveAs(Path.Combine(strServerFilePath, strFileName));
 
            return "upload done from server!";
 
        }
 
        //接收form 提交的数据,这个action是用来接收文件并保存在服务器上
        [HttpPost]
       public ActionResult SaveAs(HttpPostedFileBase MyFile)
        {
            //得到的名字是文件在本地机器的绝对路径
            var strLocalFullPathName = MyFile.FileName;
            //提取出单独的文件名,不需要路径
            var strFileName = Path.GetFileName(strLocalFullPathName);
            //定义服务器的文件夹,用来保存文件
            var strServerFilePath = Server.MapPath("/docs/");
            //将接收到文件保存在服务器指定上当
            MyFile.SaveAs(Path.Combine(strServerFilePath,strFileName));
 
            //下面只是用来显示一些相关字符串做测试用
            ViewBag.strLocalFullPathName = strLocalFullPathName;
            ViewBag.strFileName = strFileName;
            ViewBag.strServerFilePath = strServerFilePath;
 
            return View();
 
        }
 
        
    }
}
Upload.cshtml里的代码

@{
    ViewBag.Title = "Upload";
}
 

Upload


 

 
 
@*利用ajax进行文件上传*@

   
   


 
 
 
@*利用基本的form提交,进行文件上传*@

   

 
       
       
   

你可能感兴趣的:(JS,JQ,MVC)