Question
pass id into custom tag
<!---page1.cfm--->
query returned 3 IDs (1,2 and 3). Loops over each ID and call page2 then pass each ID over.
<cfloop query="my_qr">
<cf_page2 id= "#id#" />
</cfloop>
<!---page2.cfm--->
<cfoutput>
ID:#attributes.id#
</cfoutput>
tested it and only frst ID (1) is passed over to page2 instead of 1, 2 and 3?
thanks
