I have a form that will post to a CF page. The form has two fields to fill in with names 'Password and Password2.'
I have the following code in my CF page:
<CFIF #Password# NEQ #Password2# OR
LEN(TRIM(Form.Password)LTE 0)>
<CFSET Error1="Please Check Password.<br>">
</CFIF>
But I keep getting an error message saying that the variable password is undefined. Why? Any help would be great.. thanks.
I have the following code in my CF page:
<CFIF #Password# NEQ #Password2# OR
LEN(TRIM(Form.Password)LTE 0)>
<CFSET Error1="Please Check Password.<br>">
</CFIF>
But I keep getting an error message saying that the variable password is undefined. Why? Any help would be great.. thanks.