RoadFlow2.1 临时演示

Back.ashx.cs 521B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace WebForm.Platform.WorkFlowTasks
  6. {
  7. /// <summary>
  8. /// Back 的摘要说明
  9. /// </summary>
  10. public class Back : IHttpHandler
  11. {
  12. public void ProcessRequest(HttpContext context)
  13. {
  14. context.Response.ContentType = "text/plain";
  15. }
  16. public bool IsReusable
  17. {
  18. get
  19. {
  20. return false;
  21. }
  22. }
  23. }
  24. }