0
我試圖通過將一個提交按鈕上載到文件夾(使用FileUpload)來將整個表單上傳到文件夾。我設法上傳圖像到單獨的文件夾,但我無法顯示它。 謝謝。如何將圖像上傳到文件夾並顯示它
String fname;
FileUpload tempFU = new FileUpload();
string path = Server.MapPath(".") + "\\images\\" + ulProj.groupCode;
if (!Directory.Exists(path))
{
Directory.CreateDirectory(path);
}
try
{
tempFU = (FileUpload)customerUC.FindControl("CustomerLogoUrlFU");
Directory.CreateDirectory(path);
fname = path + "\\" + tempFU.FileName;
tempFU.SaveAs(fname);
tempCus.logoUrl = fname;
}
catch
{
//return;
}
你應該放棄的(有效)路徑的圖像標籤的src屬性。你有什麼問題? –
我強烈建議你擺脫那個try/catch塊。 –
我做了,但它仍然不顯示 –