Handler.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using Newtonsoft.Json;
  6. /// <summary>
  7. /// Handler 的摘要说明
  8. /// </summary>
  9. ///
  10. namespace LYFZ.WanYuKeFuData.UEditControl
  11. {
  12. public abstract class Handler
  13. {
  14. public Handler(HttpContext context)
  15. {
  16. this.Request = context.Request;
  17. this.Response = context.Response;
  18. this.Context = context;
  19. this.Server = context.Server;
  20. }
  21. public abstract void Process();
  22. protected void WriteJson(object response)
  23. {
  24. string jsonpCallback = Request["callback"],
  25. json = JsonConvert.SerializeObject(response);
  26. if (String.IsNullOrWhiteSpace(jsonpCallback))
  27. {
  28. Response.AddHeader("Content-Type", "text/plain");
  29. Response.Write(json);
  30. }
  31. else
  32. {
  33. Response.AddHeader("Content-Type", "application/javascript");
  34. Response.Write(String.Format("{0}({1});", jsonpCallback, json));
  35. }
  36. Response.End();
  37. }
  38. public HttpRequest Request { get; private set; }
  39. public HttpResponse Response { get; private set; }
  40. public HttpContext Context { get; private set; }
  41. public HttpServerUtility Server { get; private set; }
  42. }
  43. }