zoukankan      html  css  js  c++  java
  • 多文档上传文件

     
                HttpFileCollection Files = HttpContext.Current.Request.Files;
                for (int i = 0; i < Files.Count; i++)
                {
                    HttpPostedFile PostedFile = Files[i];
                    if (PostedFile.ContentLength > 0)
                    {
                        string FileName = PostedFile.FileName;
                        string strExPrentFile = FileName.Substring(FileName.LastIndexOf(".") + 1);

                        string sFilePath = "/uploadfile/hotel/" + StringClass.makeFileName24() + i + strExPrentFile;
                        PostedFile.SaveAs(Server.MapPath(sFilePath));
                    }
                    else
                    {
                        //this.LabMessage.Text = "不能上传空文件";
                    }
                }
     

  • 相关阅读:
    BD String
    1114
    1083
    1084
    1108
    1087
    1145
    1217
    1164
    反射
  • 原文地址:https://www.cnblogs.com/siyechenmu/p/4484774.html
Copyright © 2011-2022 走看看