21 lines
424 B
Plaintext
21 lines
424 B
Plaintext
<%@ WebHandler Language="C#" Class="MESCommonBase08" %>
|
|
|
|
using System.Web;
|
|
|
|
public class MESCommonBase08 : IHttpHandler
|
|
{
|
|
|
|
public bool IsReusable
|
|
{
|
|
get
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
public void ProcessRequest(HttpContext context)
|
|
{
|
|
string connType = "08";
|
|
//ProcessRequestHttpContext.ProcessRequestServer.ProcessRequestHttpContext(connType, context);
|
|
}
|
|
|
|
} |