init: 山西治金技师学院MES管理系统首次入库

This commit is contained in:
XingCheng3
2026-06-08 17:03:11 +08:00
commit 084a2b9d95
82 changed files with 92088 additions and 0 deletions

19
submit/Handler111.ashx Normal file
View File

@@ -0,0 +1,19 @@
<%@ WebHandler Language="C#" Class="Handler111" %>
using System;
using System.Web;
public class Handler111 : IHttpHandler {
public void ProcessRequest (HttpContext context) {
context.Response.ContentType = "text/plain";
context.Response.Write("Hello World");
}
public bool IsReusable {
get {
return false;
}
}
}