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