Another way to do this is have each button pass a value to some submittal
javascript function you have created. Then on the bassis of that variable's
value, go to the next page. The example below is a great on for non-js
users. Y

<form name="other_form1" action="other_page1.cfm>
        <!---
        Other form information
        --->
</form>
<form name="other_form2" action="other_page2.cfm>
        <!---
        Other form information
        --->
</form>
<form name="other_form3" action="other_page3.cfm>
        <!---
        Other form information
        --->
</form>
<form name="other_form4" action="other_page4.cfm>
        <!---
        Other form information
        --->
</form>

<form name="main_form" action="main_page.cfm">
        <!---
        Other form information
        --->
        <input type="button" OnClick="other_form1.submit();">
        <input type="button" OnClick="other_form2.submit();">
        <input type="button" OnClick="other_form3.submit();">
        <input type="button" OnClick="other_form4.submit();">
        <input type="button" OnClick="main_form.submit();">
</form>

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to