程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> 在ASP.NET中實現多文件上傳

在ASP.NET中實現多文件上傳

編輯:.NET實例教程
 private Boolean SaveFiles()
  {
   //得到File表單元素
   HttpFileCollection files = HttpContext.Current.Request.Files;
   try
   {
    for(int intCount= 0; intCount< files.Count; intCount++)
    {
    
     HttpPostedFile postedFile = files[intCount];
     string fileName, fileExtension;
     //獲得文件名字
     fileName = System.IO.Path.GetFileName(postedFile.FileName);
     if (fileName != "")
     {
      //獲得文件名擴展
      fileExtension = System.IO.Path.GetExtension(fileName);
      //可根據不同的擴展名字,保存文件到不同的文件夾
      //注意:可能要修改你的文件夾的匿名寫入權限。
      postedFile.SaveAs(System.Web.HttpContext.Current.Request.MapPath("upFiles/") + fileName);
     }
    }
    return true;
   }
   catch(System.Exception Ex)
   {
    return false;
   }
  }
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved