This commit is contained in:
2018-06-29 19:47:36 +00:00
commit be7f501333
3769 changed files with 1425961 additions and 0 deletions

28
source/WBI/AyaImage.ashx Normal file
View File

@@ -0,0 +1,28 @@
<%@ WebHandler Language="C#" Class="AyaImage" %>
using System;
using System.Web;
public class AyaImage : IHttpHandler, System.Web.SessionState.IReadOnlySessionState
{
public void ProcessRequest (HttpContext context) {
string idstring = context.Request.QueryString["id"];
Guid oID = Guid.Empty;
if (!string.IsNullOrEmpty(idstring))
oID = new Guid(idstring);
Util.WriteAyaImageToResponse(context.Response, oID);
// context.Response.ContentType = "text/plain";
//context.Response.Write("Hello World");
}
public bool IsReusable {
get {
return false;
}
}
}