Contact Me
Resources
Development Tips & Code Library
-
Recent Entries
Blogroll
Category Archives: Coldfusion
Using CF IIF with Javascript Functions
I get bored writing CFIF statements so thought I would try using the old IIF method. Despite the arguments about performance it works quite well if you are not running it through thousands of iterations. I also had need to … Continue reading
Posted in Code, Coldfusion, Snippets
Comments Off on Using CF IIF with Javascript Functions
Books
Buying computer books is a bit of a waste of money since their information is relatively out of date in a couple of years. So recently I purchased some of sitepoints books digitally when they went on sale. I find … Continue reading
Posted in Coldfusion, Products
Comments Off on Books
Coldfusion Email Application
I created a simple contact form using coldfusion CFORM and CFMAIL tag. The form gathers all the elements needed for the CFMail tag area and once submitted displays either a success or error message. I used Coldfusions built in form … Continue reading
Posted in Applications, Coldfusion
Comments Off on Coldfusion Email Application
CFMail Tracker – Application
Seems like CFMail goes wonky every once in a while and decides not to work. The administrators always blame it on too much mail for the server to handle. So I decided to call them on their “theory” and build … Continue reading
Posted in Code, Coldfusion, Problems & Fixes, SQL
Comments Off on CFMail Tracker – Application
CFOUTPUT and Array result sets
Imagine you have a query that returns a few results like Product Categories sold for a given period. You might have a query like: <cfquery name=”myQ” datasource=”myDSN”> select distinct category from sales order by category. </cfquery> Your results might look … Continue reading
Posted in Code, Coldfusion
Comments Off on CFOUTPUT and Array result sets