Deepak      
wrote:
Let learn Adobe coldfusion 8
First step :1 let write the program first
<body>
<cfset mypage=”This is my first coldfusionpage”>
<cfoutput>#mypage#</cfoutput>
</body>
So what is this .. a piece of code that it !!!
But can give you lot of things which you what to know about coldfusion
- It is a tag based programming
 - It has no defined data type(it take all kind of data for a defined variable, depend on the programming it treat the variable data type )
 - <cfset is used to set the variable .. in the above case it is mypage
 - <cfoutput tag is used to out put the variable value to the browser
 
1 comment:
Thank's A lot Jones !!!
Post a Comment