Here is a condensed version of the tags you're using
><CFOUTPUT QUERY=3D"Custupdate">
><CFFORM ACTION=3D"custupdate2.cfm" METHOD=3D"POST">
> <SELECT NAME=3D"ModelYear">
></CFOUTPUT>
> <CFLOOP From=3D"1970" To=3D"#Year(Now())#" Index=3D"ModelYear">
> <CFOUTPUT><OPTION value=3D"#ModelYear#">#ModelYear#</CFOUTPUT>
> </CFLOOP>
><CFOUTPUT>
> </select>
></CFFORM>
></CFOUTPUT>
Why don't you try changing it like so:
<CFOUTPUT QUERY="Custupdate">
<CFFORM ACTION="custupdate2.cfm" METHOD="POST">
<SELECT NAME="ModelYear">
<CFLOOP FROM="1970" TO="#Year(Now())#" INDEX="ModelYear">
<OPTION VALUE="#ModelYear#">#ModelYear#
</CFLOOP>
</SELECT>
</CFFORM>
</CFOUTPUT>
I have used normal form elements inside CFFORM tags many times without
issue, so I really don't think that is your problem (sorry Jordon <g>).
I think your problem is from order that you used the tags in... I believe
that any block elements (such as CFFORMs) that are opened inside a CFOUTPUT
loop block (which is what your very first CFOUTPUT is) must also be closed
before you close the CFOUTPUT loop.
Regards,
Seth Petry-Johnson
Argo Enterprise and Associates
------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.