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