chore: 初始化 VPSA ASP.NET 管理端

This commit is contained in:
yexingqiang
2026-06-08 17:14:28 +08:00
commit aeddf4ce65
126 changed files with 35594 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);
}
}