Planning to give a presentation on cloud computing...!
had a bit of idea what it is...so will try to build on that
Sunday, May 9, 2010
Saturday, May 8, 2010
Dynamic table rendering in coldfusion
Working this weekend on how to create dynamic table in html whch is driven b values from database.
Thursday, May 6, 2010
Exciting new world of Coldfusion
I am loving the exciting new world of coldfusion and the power it brings when you want to build any application rapidly.
Hey!... FYI.... www.adobe.com is built in coldfusion.
Hey!... FYI.... www.adobe.com is built in coldfusion.
Comparing Array Elements
public function compareArrayElements(var:array[]):Boolean
{
var arrayLength = array.length;
if (arrayLength > 0) {
var firstElement = array[0];
for (var i = 1; i < arrayLength; ++i) {
if (array[i] != firstElement) {
return false;
}
}
}
return true;
}
{
var arrayLength = array.length;
if (arrayLength > 0) {
var firstElement = array[0];
for (var i = 1; i < arrayLength; ++i) {
if (array[i] != firstElement) {
return false;
}
}
}
return true;
}
Subscribe to:
Comments (Atom)