Can anyone tell me what I am doing wrong with these conditionals?
Basically, if the form.emailAddr is present, check the database.  If found
throw error.  If not, continue on.  For some reason, I am getting just a
blank screen with no errors.

    <fuseaction name="genPassword">
        <xfa name="mainPage" value="main.login" />

        <!-- check for existing password - if found, throw an error -->
        <if condition="IsDefined('form.emailAddr')">
            <true>
                <include template="qry/qry_checkExistingPassword" />
                <if condition="existingPassword.recordcount">
                    <true>
                        <include template="dsp/dsp_header" />
                        <include template="dsp/dsp_errorExistingPassword" />
                        <include template="dsp/dsp_footer" />
                    </true>
                    <false>
                        <!--<include template="act/act_generatePassword" />
-->
                        <include template="dsp/dsp_header" />
                        <include template="dsp/dsp_passwordSent" />
                        <include template="dsp/dsp_footer" />
                    </false>
                </if>
            </true>
            <false>
                <!--<xfa name="error" value="Please enter your Email Address
Below" />-->
                <include template="dsp/dsp_header" />
                <include template="dsp/dsp_reqPass" />
                <include template="dsp/dsp_footer" />
            </false>
        </if>
    </fuseaction>


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:301270
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to