刪除文件,而我在做下面,我不能更新在Visual Studio 2005無法編輯/目錄
這裏的文件(noimg100.gif)是代碼,
String fileNotFoundPath = context.Server.MapPath("~/common/images/noimg100.gif");
context.Response.ContentType = "image/gif";
Image notFoundImage = Image.FromFile(fileNotFoundPath);
notFoundImage.Save(context.Response.OutputStream, ImageFormat.Gif);
我是否做錯了什麼或者是否需要在最後處理圖像?
編輯: 我發現下面的鏈接,它說,有關不使用Image.FromFile我用的方式:當您打開從文件的圖像 http://support.microsoft.com/kb/309482
您是否收到錯誤消息? – Default
@默認:共享違規 – Hoque
更新?你正在寫映像來響應下載而不更新服務器端,對嗎? –