I'm using MX7, a page of which contains a form in which I want the action to take the user to Page_1 and then to Page_2 and so on if certain data needs to be filled in, or to take the user straight to Page_2, if the data doesn't need to be filled in.
If it's adults only, then go straight to Page_2.
If there are children, etc, then go to Page_1, fill in age details, and then move to Page_2.
So it would be something like
<cfif Children_No GT 0> action jumps to Page_1
<cfelse> action jumps to Page_2 </cfif>
How do I code the page to make that conditional jump.
Thanks for any help.