So I\'m new to coding in coldfusion, this being my second month, so bear with me on this.
My employer\'s client wants to upload multiple files handling errors smooth
Use <cfinclude>.
<cfinclude>
<cfif SERVER.ColdFusion.ProductVersion gte 11> <cfinclude template="newWay.cfm"> <cfelse> <cfinclude template="oldWay.cfm"> </cfif>
This is how cfbackport does it: https://github.com/misterdai/cfbackport/blob/master/cfbackport.cfm