且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

ASP.NET MVC文件上传

更新时间:2023-02-17 12:12:14

p>确保将表单的 enctype 属性设置为multipart / form-data。

Make sure to set the enctype attribute of the form to "multipart/form-data".

@using (Html.BeginForm("TheAction", "TheController", FormMethod.Post, new{enctype="multipart/form-data")){
...
}

请参阅在Razor窗体视图中包含文件上传