RE: Debug output - OnRequestEnd.cfm

2001-07-11 Thread Justin
Mike, OnRequestEnd.cfm works just like Application.cfm. As we all know Applicaion.cfm gets run before every page. OnRequestEnd.cfm runs at the end of every page. Your OnRequestEnd.cfm should reside in the same folder as Application.cfm. Justin Hansen - [EMAIL PROTECTED] Web Application

RE: Debug output - OnRequestEnd.cfm

2001-07-11 Thread Mike Connolly
BUT NOT IN sub-folders below. Mike Connolly -Original Message- From: Justin [mailto:[EMAIL PROTECTED]] Sent: 11 July 2001 14:41 To: CF-Talk Subject: RE: Debug output - OnRequestEnd.cfm Mike, OnRequestEnd.cfm works just like Application.cfm. As we all know Applicaion.cfm gets run before every page

RE: Debug output - OnRequestEnd.cfm

2001-07-11 Thread Jeffry Houser
To clarify a little more, there are differences: ColdFusion traverses up the directory tree to find the Application.cfm . ColdFusion looks for OnRequestEnd.cfm in the directory where it found the Application.cfm , but does not do any further searching. If it didn't find the

RE: Debug output - OnRequestEnd.cfm

2001-07-11 Thread Joe Sheble aka Wizaerd
Don't quite see how you can make this claim, I always use it. Every application I've ever written makes use of it. I may be in the minority, but you have no real way of knowing that, so it is not quite accurate nor fair to say it's rarely used. At 10:25 AM 7/11/01 -0700, you wrote: To

RE: Debug output - OnRequestEnd.cfm

2001-07-11 Thread Andy Ewings
: Debug output - OnRequestEnd.cfm Don't quite see how you can make this claim, I always use it. Every application I've ever written makes use of it. I may be in the minority, but you have no real way of knowing that, so it is not quite accurate nor fair to say it's rarely used. At 10:25 AM 7/11

RE: Debug output - OnRequestEnd.cfm

2001-07-11 Thread Justin Hansen
The real question is does this information solve the problem of the original post? Problem: How to view debug output on a dark or black background. Solution: Create an OnRequestEnd containing only font color=white Does solve the problem? Yes. Does it work for all cfm pages in all folders under