nesting cfform behavior....
I have the following code and I have tested it in chrome and IE:
<cfform name="form1" action="http://www.yahoo.com" method="post" >
<cfloop index="X" from="1" to="9">
<cfform name="form2" action="http://www.google.com" method="post">
<cfinput type="submit" name="GOOGLE" value="GOOGLE#X#">
</cfform>
</cfloop>
<cfinput type="submit" name="YAHOO" value="YAHOO">
</cfform>
All the google buttons should submit and go to google.com....The yahoo button should go to yahoo.com. I have code similar to this working elsewhere in my application, but this one has me stumped. The first buton in the loop(when x is 1), is surrounded by the form1 tags and goest to yahoo.com, and the remaining buttons are surrounded by form2 tags and go to google.com like they are supposed to. The final yahoo button is not surounded by a form tag at all and does nothing. I know there is something I am missing....I thought you couldnt nest from tags, but I do it elsewhere and it works fine. I feel like it is something easy I am missing. HELP!
