rich
Member since May 13, 2009
- Profile: /members/3404-rich.htm
- Comments: 3
Recent Blog Comments By rich
-
CFDocument Errors And Resolving DNS
Posted on Jun 12, 2009 at 5:01 PM
I'm getting the exact same error running the following code: <cfdocument format="pdf"> <h1>Hello World!</h1> <p>Hello everyone!!!</p> </cfdocument> That is the entire contents of the body tags. And I am getting the error in a couple of apps that were work... read more »
-
Using ColdFusion Structures To Remove Duplicate List Values
Posted on May 15, 2009 at 11:23 AM
I wrote this to count the occurrences of each item when looping a populated list with redundancies into a struct. Worked pretty well. Thanks for the original idea!! :-) <cfloop index="tag" list="#tagList#" delimiters=","> <cfset tag1 = trim(#tag#)> <cfif tag1 neq ""> &... read more »
-
Using ColdFusion Structures To Remove Duplicate List Values
Posted on May 13, 2009 at 2:30 PM
How about a way to count the occurrences of each value in the list, before or during the conversion to a struct key list?... read more »