This file contains hidden or 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
| <cfheader name="content-disposition" value="attachment; filename=test.txt"/> | |
| <cfheader name="X-Sendfile" value="D:\iis\hello.txt"/> | |
| <cfcontent type="text/plain"> |
This file contains hidden or 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
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Untitled Document</title> | |
| <style type="text/css"> | |
| .result {font-family:Verdana; border-radius:10px; color:white; padding:10px} | |
| .looser {background-color:black;} | |
| .winner {background-color:red;} | |
| </style> |
This file contains hidden or 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
| <cfsavecontent variable= "x"> | |
| <?xml version="1.0"?> | |
| <AccessRequest xml:lang='en-US'> | |
| <AccessLicenseNumber></AccessLicenseNumber> | |
| <UserId></UserId> | |
| <Password></Password> | |
| </AccessRequest> | |
| <?xml version="1.0"?> | |
| <TrackRequest> | |
| <TrackingNumber>1ZA478X20198248503</TrackingNumber> |
This file contains hidden or 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
| <!--- 1 ************************************************************************ ---> | |
| <cfset DateToday = now() /> | |
| <cfdump var = "#DateToday#" /> | |
| <script type="text/javascript"> | |
| var d = new Date(); | |
| console.log( d ) | |
| </script> | |
| <!--- 2 ************************************************************************ ---> |
This file contains hidden or 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
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title></title> | |
| <script src="js/jquery-1.11.2.min.js"></script> | |
| </head> | |
| <body> |
This file contains hidden or 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
| <cfparam name="attributes.src" default="0"> | |
| <cfparam name="attributes.query" default="q"> | |
| <cfswitch expression="#thisTag.ExecutionMode#"> | |
| <cfcase value="start"> | |
| <cfset inputStream = CreateObject("java", "java.io.FileInputStream").init(JavaCast("string", attributes.src )) /> | |
| <cfset XSSFWorkbook = CreateObject("java", "org.apache.poi.xssf.usermodel.XSSFWorkbook").init(inputStream) /> | |
| <cfset DataFormatter = CreateObject("java", "org.apache.poi.ss.usermodel.DataFormatter") /> | |
| <cfset Evaluator = CreateObject("java", "org.apache.poi.xssf.usermodel.XSSFFormulaEvaluator").init(XSSFWorkbook) /> |
This file contains hidden or 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
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Untitled Document</title> | |
| </head> | |
| <style> | |
| .error {color:red} | |
| </style> | |
| <script src="https://code.jquery.com/jquery-2.1.3.min.js"></script> |
This file contains hidden or 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
| keytool -import -storepass changeit -noprompt -keystore C:\ColdFusion8\runtime\jre\lib\security\cacerts -trustcacerts -alias isecurus -file C:\inetpub\isecurus.cer |
This file contains hidden or 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
| <cffunction name="testCidrRange" output="false" returntype="boolean"> | |
| <cfargument name="CIDR" required="true" type="string"> | |
| <cfargument name="TestIP" required="true" type="string"> | |
| <cfset var CIDRParts = ListToArray(arguments.CIDR, "/")> | |
| <cfset var CIDRAddress = ListToArray(CIDRParts[1], ".")> | |
| <cfset var CIDRMask = CIDRParts[2]> | |
| <cfset var TestIPAddress = ListToArray(arguments.TestIP, ".")> | |
| <cfset var CIDRRealAddress = 0> | |
| <cfset var CIDRRealMask = 0> |
This file contains hidden or 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
| keytool -import -storepass [password] -noprompt -alias www.xxxxxxxx.com -keystore C:\ColdFusion8\runtime\jre\lib\security\cacerts -trustcacerts -file C:\ColdFusion8\runtime\jre\lib\security\xxx.cer |