1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using LeaRun.Application.Web.Common;
- namespace LeaRun.Application.Web.WebServices
- {
- /// <summary>
- /// SMSSend 的摘要说明
- /// </summary>
- public class SMSSend : IHttpHandler
- {
- public void ProcessRequest(HttpContext context)
- {
- context.Response.ContentType = "text/plain";
- SMSServiecs.topack();
- }
- public bool IsReusable
- {
- get
- {
- return false;
- }
- }
- }
- }
|