Elbette yukarıdaki çözümler mükemmel. Sadece uyarılardan kaçınmak ve temiz bir konsol için kodumdaki değişikliği takiben yaptım. (bu da yalnızca ASP.NET Geliştirme Sunucusu için) Bunun için fazladan bir işleyici yazdım:
PNGHandler.cs
class PNGHandler : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
if(context.Request.HttpMethod == "GET")
{
string requestedFile = context.Server.MapPath(context.Request.FilePath);
FileInfo fileinfo = new FileInfo(requestedFile);
string contentType = "";
if (fileinfo.Exists && fileinfo.Extension.Remove(0, 1).ToUpper() == "PNG")
{
contentType = "image/png";
context.Response.ContentType = contentType;
context.Response.TransmitFile(requestedFile);
context.Response.End();
}
}
}
}
Ve system.web altına web.config dosyasına Http Handler eklendi
<system.web>
<httpHandlers>
<add path="*.png" verb="*" type="PNGHandler" />
</httpHandlers>
</system.web>