摘要:FileUpload
HTML fileupload元件
書上是說要實現HTMLFILEUPLOAD元件上傳功能的話FORM的TAG裡面要加上
method="post" enctype="multipart/form-data"
個人沒加也是成功啦...做個筆記...
元件ID.PostedFile.
Filename
ContentType
ContentLength
SavaAs("D:\\檔案名稱");
以上幾個是比較常用的
檢查路徑是否存在
string SavePath = @"D:\\Files\"
if(!Directory.Exist(SavePath)){
Directory.CreateDirectory(SavePath); //創造這個路徑的資料夾
}