using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace CB.Admin.Plugins.Basic { /// /// UploadImage 的摘要说明 /// public class UploadImage : IHttpHandler { public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"; context.Response.Write("Hello World"); } public bool IsReusable { get { return false; } } } }