Home/Blog/Uncategorized
Topic

Uncategorized

219 posts in this collection.

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

Get all DSN Settings at Once

CFDBINFO is the tag available to know about DSN with which Coldfusion interacts. This tag actulally gives you whole idea about any specific db…

·1 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
Uncategorized

Create Date in SQL Server

Today i wanted to create sql server date using year,month,day part. Sql server doesn’t have any system function like createdate. I have a small…

·1 min read
Uncategorized

Building Your jQuery Plugin

STEP : 1The first step is to extend the actual jQuery object with the function that we wish to add.For Example, suppose we need…

·3 min read