2010-12-10 69 views
0

當我在本地系統的網站文件夾中通過asp.net中的fileupload控件上傳小型tiff文件(大約800KB)時。它成功上傳文件。但是當我上傳5MB或更大尺寸的tiff文件時。它不能上傳文件並顯示以下消息。

Internet Explorer無法顯示該網頁。

這裏是我的代碼:無法上傳尺寸爲5MB或更大的tiff文件

 

if (FileUpload1.HasFile) 
     { 
      string filename = FileUpload1.PostedFile.FileName.ToString(); 
      string fileType=Path.GetExtension(filename); 
      if ((fileType == ".tiff") || (fileType == ".tif")) 
      { 
       FileUpload1.SaveAs(Server.MapPath("~/uploads/bio/" + FileUpload1.FileName.ToString())); 
       Response.Write("File Saved"); 
      } 
      else 
      { 
       Response.Write("Select only tiff file"); 
      } 
     } 


請給出任何建議。

在此先感謝
迪內希·庫馬爾

回答