Author Archives: eSearing

About eSearing

Webdeveloper, Photographer, political junkie.

Notepad++

I just downloaded Notepad++. This is a great little text editor for when you don’t need a full blown application like dreamweaver. It opens quickly and lets you view your code for various programming and scripting languages. You can even … Continue reading

Posted in Products | Comments Off on Notepad++

Browser variance testing

Anyone who has been developing for any length of time is painfully aware of box model differences between browsers and even versions for different operating systems. Testing for these differences has been difficult or costly, and the differences are usually … Continue reading

Posted in Products | Comments Off on Browser variance testing

Applications

I have finally put out my first application – CF Directory. it is a simple database application that houses contact information. Uses a little Ajax + Jquery + Coldfusion to dynamically display the contacts info. See the applications tab at … Continue reading

Posted in Applications, Coldfusion, JQuery | Comments Off on Applications

Ways to build marketing lists

I have been working with a client on a redesign of his site. One of the key goals is to capture the email, phone, or physical address of visitors. The usual method of doing this is to set up a … Continue reading

Posted in Marketing Tactics | Comments Off on Ways to build marketing lists

isNull

Occasionally a field is blank but we have to sometimes have to show a default value or a value from another field. SQL gives us a nice tag to use: isnull(field1, field2) as name or isnull(field1, ‘n/a’) as name or … Continue reading

Posted in Code, Coldfusion, Snippets, SQL | Comments Off on isNull