07 Apr
Posted by: Brandon Harper in: ColdFusion, Tips, Hacks, & Tricks
I couldn’t seem to find the answer about how to change the JRun or ColdFusion MX document root when Googling for it last week, so I had to figure it out myself. Being able to do this is especially handy when setting-up multiple ColdFusion instances under JRun for clustering and wanting each instance to [...]
01 Apr
Posted by: Brandon Harper in: A Day In The Life Of, ColdFusion
Today I was doing some research for a product I’m about to start working on, and I was surprised to find that you can actually do C# in CFScript.
For instance, give this a try (pardon the formatting.. it doesn’t quite work-out in XHTML):
<cfscript language="c#">
using System;
public class HelloWorld {
public static void Main() {
[...]