| 123456789101112131415161718192021222324252627 |
- <%@ WebHandler Language="C#" Class="testPDA" %>
- using System;
- using System.Web;
- using DK.XuWei.WebMes;
- /// <summary>
- /// 仅用于PDA测试接口,不做任何处理
- /// </summary>
- public class testPDA : IHttpHandler
- {
- public void ProcessRequest(HttpContext context)
- {
- context.Response.ContentType = "text/plain";
- context.Response.Write(new JsonResult(JsonStatus.success) { message = "连接成功!" }.ToJson());
- }
- public bool IsReusable
- {
- get
- {
- return false;
- }
- }
- }
|