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.
<cflock scope="SESSION" type="exclusive" timeout="10" throwontimeout="YES">
<cfparam name="SESSION.userloggedin" default="NO">
<cfset SESSION.userArray = ArrayNew(1)>
<cfset SESSION.userArray[1] = "me">
<cfset SESSION.userArray[2] = "you">
</cflock>
<cflock scope="SESSION" type="readonly" timeout="10" throwontimeout="YES">
<cfif SESSIOn.userloggedin>
<cfoutput>
#SESSION.userArray[1]#<br />
#SESSION.userArray[2]#<br />
</cfoutput>
<cfelse>
<cflocation url="login.cfm">
</cfif>
</cflock>