Whatever message this page gives is out now! Go check it out!
<cffunction name="onRequestEnd" returnType="void"> <cfargument type="String" name="targetPage" required=true/> ... </cffunction> |
| Parameter | Description |
targetPage | Path from the web root to the requested page. |
<cffunction name="onRequestEnd"> <cfargument type="String" name="targetPage" required=true/> <cfset theAuthuser=getauthuser()> <cfif theAuthUser NEQ ""> <cfinclude template="authuserfooter.cfm"> <cfelse> <cfinclude template="noauthuserfooter.cfm"> </cfif> </cffunction> |
<cfoutput> <h3>Thank you for shopping at our store, #theAuthUser#!</h3> </cfoutput> |
<cfoutput> <h3>Remember, only registered users get all our benefits!</h3> </cfoutput> |
<cfloginuser name="Robert Smith" password="secret" roles="customer"> |