Initial commit for WC-SPC project

This commit is contained in:
meswork
2026-05-27 13:59:56 +08:00
commit 120a18a651
1043 changed files with 255289 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<%@ 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);
}
}