Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<cfparam name="attributes.formError" default="FALSE">
<cfscript>
//---DATE
if( form.date lt qDates.dateLow or form.date gt qDates.dateHigh ){
formError = TRUE;
errorMsg = "Date out of range please select another";
}
//---ETC.....
</cfscript>
<!--- IF NO ERRORS THEN UPDATE YOUR PAGE --->
<cfif NOT attributes.formError>
<cfinclude template="actUpdateMainPage.cfm">
<!--- ELSE DISPLAY THE FORM AGAIN WITH MESSAGE --->
<cfelse>
<cfinclude template="qryGetMainPage.cfm">
<cfinclude template="dspErrorMessage.cfm">
<cfinclude template="dspEditMainPage.cfm">
</cfif>