using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web.Mvc;
using System.Web.Routing;
namespace Everest.CmsServices.Web{
public class KoobooMvcHandler : MvcHandler
{
public KoobooMvcHandler(RequestContext requestContext)
: base(requestContext)
{
}
protected override void ProcessRequest(System.Web.HttpContext httpContext)
{
KoobooHttpContextWrapper koobooContext = (KoobooHttpContextWrapper)RequestContext.HttpContext;
//if (koobooContext == null)
//{
// koobooContext = new KoobooHttpContextWrapper(httpContext);
//}
koobooContext.RequestContext = RequestContext;
this.ProcessRequest(koobooContext);
}
}
}
|