hi,
There is this code that I understand, but can't figure out what are the client variables that are going to be available when index.cfm is opened.
<CFIF #Check.RecordCount# IS 0>
Sorry, Invalid Password
<CFELSE>
<CFSET Session.Auth = "Yes">
<CFSET Session.Admin = "Form.UserName">
<CFLOCATION url="index.cfm" addtoken="Yes">
</CFIF>
There is a form that comes after this code (action="#getfilefrompath(getcurrenttemplatepath())#"
ADDTOKEN
Optional. Yes or No. CLIENTMANAGEMENT must be enabled (see CFAPPLICATION). A value of Yes appends client variable information to the URL you specify in the URL argument.
Thanks for your help.
There is this code that I understand, but can't figure out what are the client variables that are going to be available when index.cfm is opened.
<CFIF #Check.RecordCount# IS 0>
Sorry, Invalid Password
<CFELSE>
<CFSET Session.Auth = "Yes">
<CFSET Session.Admin = "Form.UserName">
<CFLOCATION url="index.cfm" addtoken="Yes">
</CFIF>
There is a form that comes after this code (action="#getfilefrompath(getcurrenttemplatepath())#"

ADDTOKEN
Optional. Yes or No. CLIENTMANAGEMENT must be enabled (see CFAPPLICATION). A value of Yes appends client variable information to the URL you specify in the URL argument.
Thanks for your help.