25 lines
481 B
Plaintext
25 lines
481 B
Plaintext
<%@ WebHandler Language="C#" Class="commonsvc" %>
|
|
|
|
using System;
|
|
using System.Web;
|
|
|
|
public class commonsvc : IHttpHandler
|
|
{
|
|
|
|
public void ProcessRequest(HttpContext context)
|
|
{
|
|
using (IronIntel.Contractor.Site.CommonHttpRequestHandler ch = new IronIntel.Contractor.Site.CommonHttpRequestHandler(context))
|
|
{
|
|
ch.ProcessRequest();
|
|
}
|
|
}
|
|
|
|
public bool IsReusable
|
|
{
|
|
get
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
} |