Files
2-BeiqiFutian-MES_Manage/submit/MESCommonBase10.ashx
2026-05-29 13:44:19 +08:00

21 lines
424 B
Plaintext

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