C# MVC文件上传注意点

1、form表单

    post     

 enctype="multipart/form-data"

 input name="file"


2、controller中
接收到文件对象为
HttpPostedFileBase file 


原文地址:https://www.cnblogs.com/sunny3158/p/11656394.html