39 lines
892 B
Plaintext
Raw Normal View History

2015-05-19 14:45:47 +08:00
<%@ WebHandler Language="C#" Class="image" %>
using System;
using System.Web;
using System.IO;
public class image : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "image/png";
try
{
string physicalFilePath = context.Server.MapPath(String.Format("~/res/images/16/{0}.png", context.Request.QueryString["id"]));
if (File.Exists(physicalFilePath))
{
context.Response.TransmitFile(physicalFilePath);
context.Response.End();
}
}
catch (Exception)
{
context.Response.ContentType = "text/html";
context.Response.Write("Error!");
}
}
public bool IsReusable
{
get
{
return false;
}
}
2013-11-01 14:13:51 +08:00
}