I have this:
I want to do this:
I want to insert a variable name so I can use this bit of code no matter what page it's own. How do I do this without it erroring out?
----------------------------------------
Always Learning...
Code:
<cfoutput query="GetSecondaryReligious" group="ID">
<cfoutput>#GetSecondaryReligious.Name#</cfoutput> |
</cfoutput>
I want to do this:
Code:
<cfoutput query="GetSecondary#PageTitle#" group="ID">
<cfoutput>#GetSecondary#PageTitle#.Name#</cfoutput> | </cfoutput>
I want to insert a variable name so I can use this bit of code no matter what page it's own. How do I do this without it erroring out?
----------------------------------------
Always Learning...