<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2790223969710801988</id><updated>2011-07-28T13:51:33.322-07:00</updated><category term='coldfusion hello world'/><category term='how to learn coldfusion'/><category term='coldfusion basics'/><category term='coldfusion tutorial'/><title type='text'>coldfusion basics by raghuram</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://raghuramgreddy.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2790223969710801988/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://raghuramgreddy.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Raghuram Reddy</name><uri>http://www.blogger.com/profile/12230992872729503274</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_TW5lLqeDHVQ/SvqvDWQjo8I/AAAAAAAABsk/YGe7D74pVLI/S220/DSC03302.JPG'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>1</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2790223969710801988.post-999277097850929911</id><published>2008-02-25T00:56:00.000-08:00</published><updated>2009-08-02T21:17:28.377-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='coldfusion hello world'/><category scheme='http://www.blogger.com/atom/ns#' term='how to learn coldfusion'/><category scheme='http://www.blogger.com/atom/ns#' term='coldfusion basics'/><category scheme='http://www.blogger.com/atom/ns#' term='coldfusion tutorial'/><title type='text'>coldfusion basics by Raghuram Reddy</title><content type='html'>Hi,&lt;br /&gt;&lt;br /&gt;welcome to the world of Adobe coldfusion :)&lt;br /&gt;The ColdFusion (CF) application server was first developed in 1995 by JJ Allaire&lt;br /&gt;After that macromedia acquired it and released with added features.&lt;br /&gt;December 12, 2005: Adobe acquired its main rival &lt;a href="http://en.wikipedia.org/wiki/Macromedia" title="Macromedia"&gt;Macromedia&lt;/a&gt; in a &lt;a href="http://en.wikipedia.org/wiki/Stock_swap" title="Stock swap"&gt;stock swap&lt;/a&gt; valued at about $3.4 billion adding: &lt;a href="http://en.wikipedia.org/wiki/Adobe_ColdFusion" title="Adobe ColdFusion" class="mw-redirect"&gt;Adobe ColdFusion.&lt;/a&gt;&lt;br /&gt;Coldfusion has Java enabled features , friendly tags and functions  which made the coldfusion robust.&lt;br /&gt;coldfusion is a server side tag based language for developing rich internet applications.&lt;br /&gt;&lt;br /&gt;Here is some of the frequently asked questions and answers for the coldfusion beginners&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;1. How to install Coldfuison ?&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;Just go through the following adobe link which will explain the exact procedure                                 to install the   coldfusion :&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentation&amp;amp;file=part_ins.htm" target="_blank"&gt;  Coldfusion MX7 Installation&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;2. How to display the contents in the browser using coldfusion ?&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;First(Hello world) Coldfusion Program  :&lt;br /&gt;&lt;br /&gt;1. &lt;/span&gt;create a new file and save the file under &lt;span style="font-weight: bold;"&gt;&lt;br /&gt;C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war &lt;/span&gt;&lt;br /&gt;folder  with .cfm or .cfml  extension.&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;br /&gt;eg : &lt;/span&gt; C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\hello.cfm&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;br /&gt;2.&lt;/span&gt; Type  some  text( say hello world ) in the page and save that file.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;3.&lt;/span&gt;&lt;span&gt; Open the browser and type the following url in the address bar.&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;    http://127.0.0.1:8300/hello.cfm&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;you can view the output hello world on the browser which you have typed in the hello.cfm file.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;4.&lt;/span&gt; Just like System.out.println in java, and printf in C language,&lt;br /&gt;in coldfusion we have outputting tag i.e., &amp;lt;cfoutput&amp;gt; hello world &lt;span style="font-weight: bold;"&gt;Note :&lt;/span&gt; we will use the cfoutput tag whenever we need to display the dynamic values/content to the browser. For static data, we can directly type the things, so coldfusion server treats it as static data and sends the data to the browser as it is in HTML format.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;5. &lt;/span&gt;you can output the same thing using coldfusion scripting, here is the sample code for it.&lt;br /&gt;&lt;br /&gt;&amp;lt;cfscript&amp;gt;&lt;br /&gt;WriteOutput("hello world!");&lt;br /&gt;&amp;lt;/cfscript&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Note : &lt;/span&gt; coldfusion scripts will execute much faster than the tags.&lt;br /&gt;If you got performance issues, just go for cfscript.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;3.How to Learn Coldfusion?&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;Adobe provided a excellent documentation on coldfusoin tags and functions.&lt;br /&gt;What all you need to do is, just start reading the tags and execute the examples which Adobe has provided in the following link.&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/js/html/wwhelp.htm" target="_blank"&gt;Adobe Coldfusion MX7 Documentation(Tags, Functions and Sample Code)&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;Type the above link in the browser, click on the 'CFML Reference' ,&lt;br /&gt;which is in the left side of the page.&lt;br /&gt;It will expand and displays coldfusion tags,coldfusion functions links.&lt;br /&gt;click on coldfusion tags and keep reading, practice the example.&lt;br /&gt;&lt;br /&gt;Once you became comfortable with Coldfusion MX7, you can go for updated version Coldfusion 8.&lt;br /&gt;Coldfusion 8 is having additional features like&lt;br /&gt;1. ajaxified functionality(auto suggest&lt;br /&gt;2. customized menu,button,layouts)&lt;br /&gt;3. PDF merge&lt;br /&gt;4. Exchange server enhanced features&lt;br /&gt;5. And the performance is increased much compared with the earlier version.(For an example cfset tag is 10 times faster in cf8)&lt;br /&gt;For Coldfusion 8 installations and documentation click the following link&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://livedocs.adobe.com/coldfusion/8/htmldocs/index.html" target="_blank"&gt;Adobe Coldfusion  8 Installation, Documentation&lt;/a&gt;&lt;a href="http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/js/html/wwhelp.htm" target="_blank"&gt; on Tags, Functions and Sample Code&lt;/a&gt;&lt;a href="http://livedocs.adobe.com/coldfusion/8/htmldocs/index.html" target="_blank"&gt; &lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;All the best !!!&lt;br /&gt;cf9 and coldfusion builder about to release on aug 4th.&lt;br /&gt;we will share more details in coming days.&lt;br /&gt;&lt;br /&gt;until then&lt;br /&gt;keep mailing to &lt;a href="mailto:raghuramgreddy@gmail.com;"&gt;raghuramgreddy@gmail.com&lt;/a&gt; for queries&lt;br /&gt;Have a great day&lt;br /&gt;Thank you,&lt;br /&gt;Raghuram Reddy Gottimukkula&lt;br /&gt;Adobe Certified Coldfusion Developer&lt;br /&gt;Bangalore(India)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2790223969710801988-999277097850929911?l=raghuramgreddy.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://raghuramgreddy.blogspot.com/feeds/999277097850929911/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2790223969710801988&amp;postID=999277097850929911' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2790223969710801988/posts/default/999277097850929911'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2790223969710801988/posts/default/999277097850929911'/><link rel='alternate' type='text/html' href='http://raghuramgreddy.blogspot.com/2008/02/coldfusion-basics-by-raghuram-reddy.html' title='coldfusion basics by Raghuram Reddy'/><author><name>Raghuram Reddy</name><uri>http://www.blogger.com/profile/12230992872729503274</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_TW5lLqeDHVQ/SvqvDWQjo8I/AAAAAAAABsk/YGe7D74pVLI/S220/DSC03302.JPG'/></author><thr:total>4</thr:total></entry></feed>
