Files
15-WeiChai-MES_Manage/submit/MESCommonBase09.ashx

21 lines
424 B
Plaintext

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