Files
43-VPSA-MES_Manage/submit/MESCommonBase04.ashx
2026-06-08 17:14:28 +08:00

22 lines
425 B
Plaintext

<%@ WebHandler Language="C#" Class="MESCommonBase04" %>
using System.Web;
public class MESCommonBase04 : IHttpHandler
{
public bool IsReusable
{
get
{
return false;
}
}
public void ProcessRequest(HttpContext context)
{
string connType = "04";
//ProcessRequestHttpContext.ProcessRequestServer.ProcessRequestHttpContext(connType, context);
}
}