Files
2-BeiqiFutian-MES_Manage/submit/MESCommonBase04.ashx
2026-05-29 13:44:19 +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);
}
}