-1
我開發了一個ASP.net C#函數來將PDF上傳到數據庫。當我在LocalHost中嘗試它時,它的工作狀態非常好。但是當我在IIS上的服務器上發佈它時。它給了我下面的錯誤,當我點擊上傳:PDF上傳錯誤System.IO.DirectoryNotFoundException:找不到路徑的一部分
System.IO.DirectoryNotFoundException: Could not find a part of the
path + <path of the file>
string filePath = Path.GetFullPath(FileUpload1.PostedFile.FileName);
string filename = Path.GetFileName(filePath);
FileStream fs = new FileStream(filePath, FileMode.Open, FileAccess.Read);
BinaryReader br = new BinaryReader(fs);
Byte[] bytes = br.ReadBytes((Int32)fs.Length);
br.Close();
fs.Close();
有什麼我應該爲了改變才能夠上傳?