Hi I am fairly new to coldfusion programming (3-4months) and now I am working on an entirely datadriven site the structure of the site remains the same throughout, and as such I am using templates and just altering the contents of the page.<br><br>The problem I have is the the client wants to have meta tags included on every page, this is proving to be a problem for me I have spent a couple of hours trying to come up with a way of doing it. <br><br>First I tried doing a <cfquery> using the pagename as the primary key and calling entries in the database and inserting them as variables in the template. Now I am trying using <cfset> then performing a call to the template and using the set variables and entries into the meta tags:<br><br><cfset keyword1='something'><br><cfset keyword2='something'><br><cfset keyword3='something'><br><cfset keyword4='something'><br><cfset keyword5='something'><br><cfset keyword6='something'><br><cfset author='something'><br><br><CFINCLUDE TEMPLATE="temp-top.cfm"><br><br>the template has the following:<br><br><script language="JavaScript" src="js/arrays.js"></script><br><cfoutput><br><meta name="keywords" content="#keyword1#, #keyword2#, #keyword3#, #keyword4#, #keyword5#, #keyword6#"><br><meta name="author" content="#author#"><br></cfoutput><br></head><br><br>But for some reason this is refusing to work for me, does anyone have any ideas or suggestions as to how I may fix this problem?<br><br>Thanks for any help you may have.<br><br>Ben