Category Archives: Problems & Fixes

CFEmail – Alternatives for the user

For those times when CFMail Just won’t cooperate, rather than throwing only an error message, give your user a chance to send the email from their own mail client on their PC/device. If CFMail fails the user is provided a … Continue reading

Posted in Code, Coldfusion, Problems & Fixes, Snippets | Tagged , , , | Comments Off on CFEmail – Alternatives for the user

Coldfusion bug – dialog box redirects on ok

I had an interesting problem to figure out today. On one of my forms I had a Help icon which the user could click and it would display a dialog box with help. Sometimes the box would just close, other … Continue reading

Posted in Coldfusion, Problems & Fixes, Snippets | Comments Off on Coldfusion bug – dialog box redirects on ok

Zen Coding – OMG!

We developers are always looking for tools to improve our process or speed up common tasks. I often save bits of code I reuse in Dreamweaver’s snippets. Today I discovered a plugin/extension which allows even more flexibility and it even … Continue reading

Posted in Applications, Code, Problems & Fixes, Products | Comments Off on Zen Coding – OMG!

MSIE 9 bug – enctype multipart/form-data

Fixing Coldfusion error message Invalid content type: application/x-www-form-urlencoded.The files upload action requires forms to use enctype=””multipart/form-data””. It is a bit misleading since we usually list the enctype. However for MSIE 9 Encoding must be there too. <CFForm action=”somepage.cfm” method=”put”, enctype=”multipart/form-data”, … Continue reading

Posted in Code, Coldfusion, Javascript, Problems & Fixes | Comments Off on MSIE 9 bug – enctype multipart/form-data

Javascript – checkboxes are checked?

How to Evaluate if Check Boxes are checked when submitting a form. Throws an error if none are checked. Continue reading

Posted in Javascript, Problems & Fixes, Snippets | Comments Off on Javascript – checkboxes are checked?