Files
Lehrlingsparcours/_archiv/LPWeb - Kopie (2)/LPWeb/CuteSoft_Client/CuteEditor/Uploader.ashx
2019-12-21 10:58:30 +01:00

24 lines
513 B
Plaintext

<%@ WebHandler Language="C#" Class="CuteEditor_AjaxUploader" %>
using System;
using System.Web;
using CuteEditor;
public class CuteEditor_AjaxUploader : IHttpHandler {
public void ProcessRequest (HttpContext context) {
if (CuteEditor.UploadModule.HandleResource(context))
return;
if (CuteEditor.UploadModule.HandleAddonUpload(context))
return;
context.Response.Write("Unknown Request Type");
}
public bool IsReusable {
get {
return false;
}
}
}