Advertisement
Guest User

Untitled

a guest
Jul 11th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <cfset XmlFile = Expandpath("hm.xml")>
  2. <cffile action="READ" variable="xmlInput"  file="#XmlFile#">
  3. <cfset XslIndex = Expandpath("hm.xsl")>
  4. <cffile action="READ" variable="xslInput" file="#XslIndex#">
  5. <cfset xmlOutput = XMLTransform(xmlInput, xslInput)>
  6. <cfcontent type="text/html" reset="yes">
  7. <cfoutput>#xmlOutput#</cfoutput>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement