<!--- Define application. ---> <cfapplication name="CFInclude Test" applicationtimeout="#CreateTimeSpan( 0, 0, 10, 0 )#" /> <!--- Param the counter to keep track of how many requests run through the application page pre processing. ---> <cfparam name="APPLICATION.RequestCount" type="numeric" default="0" /> <!--- Add one to the request count. ---> <cfset APPLICATION.RequestCount = (APPLICATION.RequestCount + 1) />