NotSupportedHandler.cs 562 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. /// <summary>
  6. /// NotSupportedHandler 的摘要说明
  7. /// </summary>
  8. ///
  9. namespace LYFZ.WanYuKeFuData.UEditControl
  10. {
  11. public class NotSupportedHandler : Handler
  12. {
  13. public NotSupportedHandler(HttpContext context)
  14. : base(context)
  15. {
  16. }
  17. public override void Process()
  18. {
  19. WriteJson(new
  20. {
  21. state = "action 参数为空或者 action 不被支持。"
  22. });
  23. }
  24. }
  25. }