This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<CFSETTING ENABLECFOUTPUTONLY="YES"> | |
<!--- | |
Excel.cfm | |
ColdFusion Custom Tag - Converts database query object to | |
XLS/XLSX Excel file w/optional formatting | |
(Based on a defunct CFX_Excel tag that we used with ColdFusion 5) | |
Author: James Moberg james at ssmedia dot com | |
Requirements: ColdFusionF 9+ | |
<CF_Excel query="#GetResults#" filename="Products_#DateFormat(Now(),'yyyymmdd')#.xls"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--- | |
Reading, decoding and inflating a SAML XML respone with Coldfusion | |
This script is heavily inspired by the following posts: | |
- Ciarán Archer : https://flydillonfly.wordpress.com/2011/06/28/using-coldfusion-to-unzip-a-gzip-base64-string/ | |
- Ryan Loda : http://www.coderanch.com/t/545270/java/java/Decode-SAML-Request | |
- Ben Nadel : http://www.bennadel.com/blog/1343-converting-a-base64-value-back-into-a-string-using-coldfusion.htm | |
---> |