22 lines
425 B
Plaintext
22 lines
425 B
Plaintext
<%@ 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);
|
|
}
|
|
|
|
|
|
} |