| Title: |
Caching CFCs |
| Date: |
05/23/03
3 Posts
|
| Summary: |
How do you persist CFC data in a database using WDDX? Write two methods within the CFC, one to serialize the data to WDDX and another to deserialize it back to instance data. You can download Raymond Camden's "MX on the Rocks" presentation to see how this is done. |
| |
| Title: |
Regex - Can This Be Done? |
| Date: |
05/23/03
6 Posts
|
| Summary: |
Need to append the current template's query string to all links ending in "id=somenumber?" Try this:
REReplaceNoCase(string,'href="([^"]+id=[0-9]+[^"]*)"',
'href="\1&#cgi.query_string#"', 'all')
|
|
| |
| Title: |
Publishing RSS News Feeds |
| Date: |
05/23/03
7 Posts
|
| Summary: |
Want to make your website content available to others via an RSS feed? Here are several tips for using RSS with ColdFusion along with a a book recommendation and a DRK3 resource for DevNet subscribers. |
| |
| Title: |
Maintain Multiple Language Versions of a Web Site |
| Date: |
05/23/03
9 Posts
|
| Summary: |
Is it better to store locale information for international websites in a database or in XML files? After evaluating the pros and cons of each of these storage mechanisms, XML gets the final nod. |
| |
| Title: |
CFMAIL and CFOUTPUT Error |
| Date: |
05/23/03
8 Posts
|
| Summary: |
You cannot use CFMAIL within a CFOUTPUT block unless you CFINCLUDE your CFMAIL file. Why? CFMAIL is treated like a CFOUTPUT tag in ColdFusion, so when you include a CFMAIL tag within a CFOUTPUT block, you are effectively nesting CFOUTPUT tags...a CF "no-no." |
| |
| Title: |
Site Proposal Template |
| Date: |
05/23/03
9 Posts
|
| Summary: |
Searching for a "website development proposal" guide? Look no further. Here you'll find a a template you can customize for your own use as well as URLs to additional resources. |
| |