mindytruitt
08-09-2004, 09:40 PM
I am not even sure it is possible, but I wanted to see if I could nest forms. Both forms work indivdually but when put together I can't get them to work. Any help??
<form name="contact" method="post" action="VCEntryVerify.cfm">
<input type="text" name="PurchaseDate">
<FORM NAME="categoryform" METHOD="POST" ACTION="">
<SELECT NAME="Customer" onChange="change_Contact_menu(this.selectedIndex);">
<OPTION VALUE="null" selected>Customer</OPTION>
<OPTION VALUE="null">---------------------------------</OPTION>
<CFOUTPUT QUERY="Customer">
<option value="#CustomerID#">#Customer#</option>
</CFOUTPUT>
</SELECT>
<SELECT NAME="Contact_select" >
<OPTION VALUE="null" selected>Contact
<OPTION VALUE="null">---------------------------------
<OPTION VALUE="null">
<OPTION VALUE="null">
<OPTION VALUE="null">
</SELECT>
</FORM>
<input type="hidden" name="Email">
<input type="submit" value="submit">
</form>
Another question, is it possible to have the values that were selected in the drop down boxes (in the inner form) to be an input in the outer form?
Thanks,
Mindy
<form name="contact" method="post" action="VCEntryVerify.cfm">
<input type="text" name="PurchaseDate">
<FORM NAME="categoryform" METHOD="POST" ACTION="">
<SELECT NAME="Customer" onChange="change_Contact_menu(this.selectedIndex);">
<OPTION VALUE="null" selected>Customer</OPTION>
<OPTION VALUE="null">---------------------------------</OPTION>
<CFOUTPUT QUERY="Customer">
<option value="#CustomerID#">#Customer#</option>
</CFOUTPUT>
</SELECT>
<SELECT NAME="Contact_select" >
<OPTION VALUE="null" selected>Contact
<OPTION VALUE="null">---------------------------------
<OPTION VALUE="null">
<OPTION VALUE="null">
<OPTION VALUE="null">
</SELECT>
</FORM>
<input type="hidden" name="Email">
<input type="submit" value="submit">
</form>
Another question, is it possible to have the values that were selected in the drop down boxes (in the inner form) to be an input in the outer form?
Thanks,
Mindy



