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