Link to home
Start Free TrialLog in
Avatar of MOSTAGHASSI
MOSTAGHASSIFlag for United States of America

asked on

What is ColdFusion?

Hi

Please let me know what is coldfusion ?is it like ASP ?does the .cfm files on some websites relate to coldfusion?

Thanks
Avatar of CFXPERT
CFXPERT

Yes CFM files are coldFusion scripts or (templates).  COldFusion is a server engine that resolves tag names (kinda like regular HTML tags but only CF tags.  There are many predefined CFtags built into the CF server engine.  Along with all your normal functions such as string munipulation and date/time functions.

Some people like ASP over CF but after using CF for many years I find that it's easier to write common functions and ODBC connections than in ASP.

ASP works ok but often takes a lot longer to code even the simplest of things.

Just my opinion.

KWK
ASKER CERTIFIED SOLUTION
Avatar of CFXPERT
CFXPERT

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of MOSTAGHASSI

ASKER

Hi CFXPERT

In asp we use vbscript what is script language in ColdFusion?
thanks
CF isn't really a programming language like VBSCRIPT.  If you get into to CF you'll find that it's really just a matter of using CF <tag> names and specifying proper attributes kinda like just using HTML tags.  It's pretty simple to use for the most part except when you get into more advanced levels dealing with COM Objects and XML parsing and stuff like that.

Glad I could shed a little light on the subject for ya.

:)

KWK