Question

Is it possible to reference a cf variable in html? Example:

<cfset  langValue ="uk">

<html lang="#langValue#">

In this way does not work, however if I then print it out with cf tags it obviously works:

<cfoutput> #langValue# </cfoutput>

Any how to reference the langValue variable in the html lang tag?

Was it helpful?

Solution

You just have to make sure to wrap your HTML in the cfoutput :

<cfoutput>
    <html lang="#langValue#">
</cfoutput>

OTHER TIPS

I don't use cfset any longer. The new hotness is:

<cfscript>
langValue = 'uk'
</cfscript>
<cfoutput>
<html lang="#langValue#">
</html>
</cfoutput>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top