[Asp.net] MVC5 上传文件

本文介绍了在ASP.NET MVC5中如何实现文件上传功能。控制器包含名为UploadTest的类,其中有两个Action:Upload用于展示上传表单,SaveAs则处理文件并保存。在Upload的视图中,需为表单添加指定name属性,确保与SaveAs方法的参数名一致,以正确传递文件。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

控制器名 UploadTest

里面新两个Action, 分别为Upload()和SaveAs()

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();

        }

        //这个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()方法的View视图,要为form添加一个属性: 

enctype="multipart/form-data"

注意: 红色部分,第一是要用name的属性,第二是这个名字要与SaveAs()的参数名相同

<form action="/UploadTest/SaveAs" method="post" enctype="multipart/form-data">
    <div>

        <input type="file" id="MyFile" name="MyFile" />
        <input type="submit" value="Upload" />
    </div>
</form>

SaveAs()方法的View视图,只是查看相关的字符串

@ViewBag.strLocalFullPathName<Br />
@ViewBag.strFileName<br />
@ViewBag.strServerFilePath<br />


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值