在执行以下操作时,我无法在 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