using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace WebForm.Platform.WorkFlowTasks { /// /// Back 的摘要说明 /// public class Back : IHttpHandler { public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"; } public bool IsReusable { get { return false; } } } }