Remove MSWord comment in Coldfusion

Today, I've got problem because of messy of Microsoft Word comments in our database. It's because of our clients wrote some messages in MsWord and paste these into CFTextarea richtext data. That's why those data cannot be displayed at our project. It's my bad that I have not thought about how to prevent these kind of problems during project development.

[More]

Convert date format UDF

Today, I've created simple UDF for convert date format "dd/mm/yyyy" to "mm/dd/yyy". Because our clients want to use "dd/mm/yyyy" format as our national format into our projects. You may all know that it's very easy to convert but it's dedicated to those who start learning Coldfusion UDF.

[More]

Disable style in CSS

Today I've found that how to create CSS for disable input form. It's very useful and we can do separate class for those event. Here is CSS for normal input event.

view plain print about
1input[type="text"], input[type="password"]{
2    color: #000000;
3    border: solid 1px #999999;
4}
5
6select {
7    color: #000000;
8    border: solid 1px #999999;
9}

[More]

Top of Page