I am trying to do a simple HttpHandler that checks some things (security - though this is unimportant) and continue on to the page. It should be simple, but I obviously have 1 or both parameters to GetCompiledPageInstance incorrect:\[code\]public void ProcessRequest(HttpContext context){ if (CheckAccess(context)) PageParser.GetCompiledPageInstance(context.Request.Path, context.Request.PhysicalPath, context);}public bool IsReusable { get { return false; } }private bool CheckAccess(HttpContext context){ return true;}\[/code\]This is a website, not application, though I don't think that makes a difference.