chore: 初始化解放动力大柴MES管理站点
This commit is contained in:
19
submit/Handler111.ashx
Normal file
19
submit/Handler111.ashx
Normal 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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user