Visit the ColdFusionProNews Directory
Beginners
Installation, Coding Techniques, Data Structures...
CF Powered Sites
Stores, Directories, Universities...
Developers
Developers, Designers, Experts...
E-commerce
Shoes, Food, Music...
Education
Books, Online Resource, Languages...
Expert
LiveChat , CFX XMLParser , User Defined Function Library...
Hosting
Dedicated Servers, Virtual Server, Multi-user...
Intermediate
AutoResize , DataSource Encryption, Guestbook...

Submit your site for FREE

Archive for July, 2007

Updating ColdFusionBloggers.org - Using CFDIV For Paging

Wednesday, July 25th, 2007

So once again I’m messing with ColdFusionBloggers to show off some ColdFusion 8 AJAX goodness.

This time the idea came from Todd Sharp. He suggested making the paging AJAX based. That way when you move from page to page, only the content is loaded. Turns out the change was rather simple.

My original code simply got the data and displayed it inside a layout custom tag. I began by changing my index.cfm page to this:

<cfajaximport tags="cftooltip">

<cf_layout title=”coldfusionBloggers”>

<cfdiv bind=”url:content.cfm” id=”content” />

</cf_layout>

I’ll explain the import in a sec. But basically I moved all of the content into a new file. I then used cfidv and bound it to my new file, content.cfm.
(more…)

ColdFusion 8: Working With PDFs

Wednesday, July 11th, 2007

Ok, time for a little revelation. This may prevent me from ever working for Adobe, but I have to be honest.

PDFs are boring.

Ok, ok, I get it. They look nice. They are powerful. But… outside of that, when I hear folks talk about PDF as a technology, I have to stifle a yawn. Not because I don’t like PDFs. I like them just fine. But to me they are about as exciting as, well, other file formats. As long as they work, I’m not too bothered to really care about the internals.
(more…)