zoukankan      html  css  js  c++  java
  • ASP.NET MVC 上传文件方法

    前端:
    
    <form id="form" method="post" action="/Attachment/Save/" enctype="multipart/form-data" >
    
      <table> 
    
    <tr>
                <td>
                   上传文件:
                </td>
                <td>
               
                  <input id="FileNamePath" required="true" name="FileNamePath" type="file" />(注:选择图片文件)
                </td>
            </tr>
    
    
        </table>
        </form>

    这里要特别注意:enctype="multipart/form-data",否则后台无法获取到

    后端:
    string fileExtension = string.Empty; ;
    string filename = string.Empty; ;
    string filePathName = string.Empty;
     long fileSize = 0;
    if (Request.Files["FileNamePath"].ContentLength>0)
    {
                    string path = Server.MapPath(ConfigHelp.GetAppSettings("ADImage"));
                    string uploadFileName = Path.GetFileName(Request.Files["FileNamePath"].FileName);
    
                      fileExtension = System.IO.Path.GetExtension(Request.Files["FileNamePath"].FileName).ToLower();
                    filename = entity.Title + fileExtension;
                    filePathName = Path.Combine(path, filename);
                    Request.Files["FileNamePath"].SaveAs(filePathName);
                    fileSize = Request.Files["FileNamePath"].ContentLength;
    
    }
    

     多个文件时后台的获取方式为:

          foreach(string name in Request.Files)
           {
             Request.Files["name"]
         }

    这里的name是前台标签input的name

  • 相关阅读:
    正则化--Lambda
    uwsgi配置cheaper模式进行自动弹性
    采集容器内存并写到excel
    通过进程id找到进程对应的容器并统计每个进程的内存占用写到excel里
    基于celery的任务管理
    基于Redis做内存管理
    uWSGI
    nginx
    服务发现
    绑核与巨页
  • 原文地址:https://www.cnblogs.com/f2flow/p/2866608.html
Copyright © 2011-2022 走看看