User Guide
958 Chapter 5: Application.CFC Reference
<!--- Regular maintenance is done late at night. During those hours, tell
people to come back later, and do not process the request further. --->
<cfscript>
if ((Hour(now()) gt 1) and (Hour(now()) lt 3)) {
WriteOutput("The system is undergoing periodic maintenance.
Please return after 3:00 AM Eastern time.");
return false;
} else {
this.start=now();
return true;
}
</cfscript>
</cffunction>