SMSSend.ashx.cs 589 B

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