我想知道如何在发生错误时显示自定义错误cfm页面。
我在application.cfm中写了以下几行
<cferror type="request" template="ErrorPage.cfm"/>
<cferror type="exception" template="ErrorPage.cfm"/>
<cferror type="validation" template="ErrorPage.cfm"/>
&#13;
但是这段代码无法处理TemplateNotFound异常,我知道ColdFusion服务器中有一个设置来指定我们自定义缺失模板处理程序和站点范围错误处理程序的路径。但我不想要这个,因为这会影响我在服务器下运行的所有应用程序。
我还在application.cfm中使用了onMissingTemplate函数,但这也没有用。
还有其他建议吗?