程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> 關於ASP.NET >> asp.net 2.0上傳控件的使用

asp.net 2.0上傳控件的使用

編輯:關於ASP.NET

分享代碼如下:

protected void Button1_Click(object sender, EventArgs e)
  {
    try
    {
      判斷文件大小#region 判斷文件大小
      int intFileLength = this.FileUpload1.PostedFile.ContentLength;

      if (intFileLength > 50000)
      {
        this.Label1.Text = "文件大於50k,不能上傳";
        return;
      }
      #endregion

判斷保存的文件夾是否存在#region 判斷保存的文件夾是否存在

string strUpPath = @"upfile\" + System.DateTime.Now.ToShortDateString();// +@"\";

      //文件夾不存在的時候,創建文件夾
      if (!System.IO.Directory.Exists(Server.MapPath(strUpPath)))
      {
        System.IO.Directory.CreateDirectory(Server.MapPath(strUpPath));
      }
      string strUrl = Server.MapPath(strUpPath + @"\" + this.FileUpload1.FileName);
      #endregion
      //上傳文件
      this.FileUpload1.SaveAs(strUrl);

      this.Label1.Text = "文件上傳成功";

    }
    catch (System.Exception ex)
    {
      this.Label1.Text = "文件上傳失敗:" + ex.Message;
    }
  }

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved