Insights

Written by the people doing the work.

We publish on agentic AI, automation, ColdFusion and modernization; the topics where we think the received wisdom is currently wrong. No ghostwriting, no vendor summaries.

Uncategorized

cfsavecontent in CF9 cfscript

HiWe can use cfsavecontent in cfscript but only for CF9.The cfsavecontent equivalent in CF9 script is "savecontent" which is used like this: Syntax: [code:cf]…

·1 min read
Uncategorized

MsSQL – Copy Data from One Table to Another Existing Table

Today, there was a need to insert data from one table to another table. There are many ways to insert data from one to…

·1 min read
Uncategorized

Random Salt Password Encryption

Random Salt Password Encryption Technique[code:js]/* Client Side */function encryptPassword(){var salt = #session.salt#;var passField = document.getElementById(‘txtPassword’);// Submit this password value while submitting form.return md5(md5(passField.value) +…

·1 min read
Uncategorized

Find Longest Executing Queries in SQL Server (2005,2008)

I have been working with queries today and wanted to find some queries which was very high on its execution time. There was a…

·1 min read
Uncategorized

Facing nested param serialization problem – Appending “[]” after variable – jQuery.

Our current application has been affected by a change in the latest jQuery (1.4.1) from the previous release. In form submission using ajax, jQuery…

·1 min read
Uncategorized

cfquery Using cfscript

We can use cfscript to execute a query passing SQL statements to a data source. We can execute sql statement using execute method with…

·2 min read
Uncategorized

Overwrite old click event function Not Working in IE

I just came across this problem that is happening in IE. In the html I am adding an onclick event to an element that…

·2 min read
Uncategorized

Check All Checkboxes with JQuery Plugins

A jQuery plugin is simply a way to put your code into a package. It makes it easier to maintain and use in different…

·2 min read
Uncategorized

Steps to Restore SQL Server 2008 to SQL Server 2005

Creating Scripts to Move SQL Server 2008 Database to SQL Server 2005 Please refer below step. Use the scripting wizard in SQL Server 2008…

·1 min read
Uncategorized

Issue with Amazon S3 PDF Download Link in Chrome and Internet Explorer (IE)

In one of our project we are using Amazon S3 to store files which later use to download from web application. We have most…

·2 min read
Uncategorized

Promote and Support Coldfusion On Web – All CFers Must Have a Look at This

Yesterday i was just googling around and found very generous approach which can help CF community to grow and expand as much as it…

·1 min read
Uncategorized

Use Firebug in Any Browser

By including below script on your site or page will get you a firebug console that will pop up for debugging in any browser…

·1 min read