<?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:blogger='http://schemas.google.com/blogger/2008' 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-391076632778198778</id><updated>2024-09-11T08:56:00.430-07:00</updated><category term="Hotel Reservation"/><category term="SEO Expert"/><category term="Starting a Business"/><category term="Tutorial :  Application code documentation"/><category term="Tutorial : Hold Output"/><category term="Tutorial : Pagination"/><category term="Tutorial : Pagination (Component based)"/><category term="Tutorial : Pagination (Function based)"/><category term="Tutorial : Slide Show"/><category term="Tutorial : User Login"/><category term="Tutorial : cfsavecontent"/><category term="Tutorial: Color Picker"/><title type='text'>coldfusion</title><subtitle type='html'>adobe coldfusion</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://web-adobe.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/391076632778198778/posts/default'/><link rel='alternate' type='text/html' href='http://web-adobe.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>12</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-391076632778198778.post-4788208377260570008</id><published>2008-10-07T08:01:00.000-07:00</published><updated>2008-11-24T04:25:00.603-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial: Color Picker"/><title type='text'>Tutorial: Color Picker</title><content type='html'>&lt;style type=&quot;text/css&quot;&gt;
&lt;!-- 
.TableParam{ border:0; width:100%; padding:0; border-spacing:1; color:#B57DB5; background-color:#FFFEFF}
.SecondTableParam{ border:0; width:100%; padding:0; border-spacing:1; color:#B57DB5; background-color:#fffffe}

--&gt;
&lt;/style&gt;

&lt;br&gt;&lt;br&gt;
&lt;span style=&quot;FONT-WEIGHT: bold;color:#FF57B2&quot; &gt;
Coldfusion Tutorial: Color Picker
&lt;/span&gt;
&lt;br&gt;&lt;br&gt;

&lt;span style=&quot;FONT-WEIGHT: bold;color:#42b2de;&quot; &gt;
 Description
&lt;/span&gt;

&lt;br&gt;
A  simple and full featured color picker. It is component based. Just create a picker.cfc file. That you can reuse. Finaly you can call this component from any where in your application.
&lt;br&gt;&lt;br&gt;

&lt;br&gt;&lt;br&gt;
&lt;span style=&quot;FONT-WEIGHT: bold;color:#42b2de;&quot; &gt;
 Example
&lt;/span&gt;
&lt;br&gt;&lt;br&gt;
picker.cfc page
&lt;br&gt;

&lt;div style=&quot;overflow-x:scroll; width:375; background-color:#E8E8E8&quot;&gt;
 &lt;font color=&quot;#646464&quot;&gt;
  &lt;code&gt;
   &lt;pre&gt;

&amp;lt;cfcomponent&amp;gt;
 &amp;lt;cffunction name=&quot;ColorPicker&quot; access=&quot;remote&quot; returntype=&quot;string&quot;&amp;gt;
  &amp;lt;cfwindow name=&quot;ColorWindow&quot; initshow=&quot;false&quot; width=&quot;200&quot; height=&quot;220&quot;&amp;gt;
   &amp;lt;script language=&quot;javascript&quot;&amp;gt;
    function thisElement(name){
     currentElement = name ;
    }
   &amp;lt;/script&amp;gt;
   
   &amp;lt;script language=&quot;javascript&quot;&amp;gt;
    function selectedColor(colorValue){
     var currentColor = colorValue ;
     //document.getElementById(currentElement).value=&quot;#&quot;+currentColor;
     document.getElementById(currentElement).style.backgroundColor=&quot;#&quot;+currentColor;
    }
   &amp;lt;/script&amp;gt;
  
   &amp;lt;cfset CharList=&quot;0,3,6,9,C,F&quot;&amp;gt;
   &amp;lt;cfset Counter=0&amp;gt;
   &amp;lt;cfoutput&amp;gt;
    &amp;lt;table border=&quot;0&quot; cellspacing=&quot;1&quot;&amp;gt;
     &amp;lt;tr&amp;gt;
      &amp;lt;cfloop list=&quot;#CharList#&quot; index=&quot;GreenColor&quot;&amp;gt;
       &amp;lt;cfloop list=&quot;#CharList#&quot; index=&quot;BlueColor&quot;&amp;gt;
        &amp;lt;cfloop list=&quot;#CharList#&quot; index=&quot;RedColor&quot;&amp;gt;
         &amp;lt;cfif Counter % 18 EQ 0&amp;gt;
          &amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;
         &amp;lt;/cfif&amp;gt;
         &amp;lt;td onmouseover=&quot;document.getElementById(&#39;codeDisplay&#39;).value =&#39;###RedColor##RedColor##GreenColor##GreenColor##BlueColor##BlueColor#&#39;;&quot;
          onclick=&quot;selectedColor(&#39;#RedColor##RedColor##GreenColor##GreenColor##BlueColor##BlueColor#&#39;);
             javascript:ColdFusion.Window.hide(&#39;ColorWindow&#39;);&quot;
           title=&quot;#RedColor##RedColor##GreenColor##GreenColor##BlueColor##BlueColor#&quot;
           style=&quot; background-color: #RedColor##RedColor##GreenColor##GreenColor##BlueColor##BlueColor#; color: black; font-size:7px; width:7px; height: 7px; cursor:pointer&quot;&amp;gt;
          &amp;lt;a onmouseover=&quot;document.getElementById(&#39;colorDisplay&#39;).style.backgroundColor =&#39;#RedColor##RedColor##GreenColor##GreenColor##BlueColor##BlueColor#&#39;;&quot;&amp;gt; &amp;nbsp;&amp;nbsp;&amp;lt;/a&amp;gt;
         &amp;lt;/td&amp;gt;
         &amp;lt;cfset Counter=Counter+1&amp;gt;
        &amp;lt;/cfloop&amp;gt;
       &amp;lt;/cfloop&amp;gt;
      &amp;lt;/cfloop&amp;gt;
     &amp;lt;/tr&amp;gt;
     &amp;lt;tr&amp;gt;
      &amp;lt;td colspan=&quot;18&quot; headers=&quot;5&quot;&amp;gt;&amp;lt;/td&amp;gt;
     &amp;lt;/tr&amp;gt;
     &amp;lt;tr &amp;gt;
      &amp;lt;td id=&quot;colorDisplay&quot; colspan=&quot;9&quot; height=&quot;15&quot; bgcolor=&quot;&quot; style=&quot;background-color: red;&quot;&amp;gt;&amp;lt;/td&amp;gt;
      &amp;lt;td colspan=&quot;9&quot; height=&quot;15&quot; bgcolor=&quot;&quot;&amp;gt;&amp;lt;input type=&quot;text&quot; value=&quot;&quot; id=&quot;codeDisplay&quot; style=&quot;height: 15px; width: 90px; border: none; font-size: 12px;&quot; readonly=&quot;yes&quot;&amp;gt;&amp;lt;/td&amp;gt;
     &amp;lt;/tr&amp;gt;
    &amp;lt;/table&amp;gt;
   &amp;lt;/cfoutput&amp;gt;
  &amp;lt;/cfwindow&amp;gt;
 &amp;lt;/cffunction&amp;gt;
&amp;lt;/cfcomponent&amp;gt;

   &lt;/pre&gt;
  &lt;/code&gt;
 &lt;/font&gt;
&lt;/div&gt;

&lt;br&gt;&lt;br&gt;
picker.cfm this is caller page. Here you must pass the input box id to javascript. 
&lt;br&gt;

&lt;div style=&quot;overflow-x:scroll; width:375; background-color:#E8E8E8&quot;&gt;
 &lt;font color=&quot;#646464&quot;&gt;
  &lt;code&gt;
   &lt;pre&gt;

&amp;lt;cfscript&amp;gt;
 objPicker=CreateObject(&quot;component&quot;,&quot;picker&quot;);
&amp;lt;/cfscript&amp;gt;
&amp;lt;cfset objPicker.ColorPicker()&amp;gt;

&amp;lt;cfoutput&amp;gt;
&amp;lt;center&amp;gt;
&amp;lt;form name=&quot;oTableForm&quot; action=&quot;&quot; method=&quot;post&quot;&amp;gt;
 &amp;lt;table&amp;gt;

  &amp;lt;tr&amp;gt;
   &amp;lt;td colspan=&quot;2&quot;&amp;gt;Click the box&amp;lt;/td&amp;gt;
  &amp;lt;/tr&amp;gt;
  &amp;lt;tr&amp;gt;
   &amp;lt;td&amp;gt;Color 1:&amp;lt;/td&amp;gt;
   &amp;lt;td&amp;gt;
    &amp;lt;input type=&quot;text&quot; name=&quot;color1&quot;   readonly=&quot;yes&quot; value=&quot;&quot; onfocus=&quot;javascript:ColdFusion.Window.show(&#39;ColorWindow&#39;); thisElement(&#39;color1&#39;);&quot; /&amp;gt;
   &amp;lt;/td&amp;gt;
  &amp;lt;/tr&amp;gt;
  &amp;lt;tr&amp;gt;
   &amp;lt;td&amp;gt;Color: 2&amp;lt;/td&amp;gt;
   &amp;lt;td&amp;gt;&amp;lt;input type=&quot;text&quot; name=&quot;color2&quot;    readonly=&quot;yes&quot; value=&quot;&quot; onfocus=&quot;javascript:ColdFusion.Window.show(&#39;ColorWindow&#39;); thisElement(&#39;color2&#39;);&quot; /&amp;gt;&amp;lt;/td&amp;gt;
  &amp;lt;/tr&amp;gt;
 &amp;lt;/table&amp;gt;
&amp;lt;/form&amp;gt;
&amp;lt;/center&amp;gt;
&amp;lt;/cfoutput&amp;gt;

   &lt;/pre&gt;
  &lt;/code&gt;
 &lt;/font&gt;
&lt;/div&gt;


&lt;br&gt;&lt;br&gt;
&lt;span style=&quot;FONT-WEIGHT: bold;color:#42b2de;&quot; &gt;
 Example Output
&lt;/span&gt;
&lt;br&gt;&lt;br&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi7tyfE6xsGdpbRbQNyq7rCQP5IohV1dg1hhUbNsav5G2nIL6tWa2mPEMN3x_-QTE-ZFVLTV-XdQPVh3R8LMWZ-SeaCKLy5La7ZwyeozZpqZ8Ae-ST3AUKcKYmLQF4wpTzcVvSB543vN58/s1600-h/colorpicker.gif&quot;&gt;&lt;img style=&quot;cursor:pointer; cursor:hand;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi7tyfE6xsGdpbRbQNyq7rCQP5IohV1dg1hhUbNsav5G2nIL6tWa2mPEMN3x_-QTE-ZFVLTV-XdQPVh3R8LMWZ-SeaCKLy5La7ZwyeozZpqZ8Ae-ST3AUKcKYmLQF4wpTzcVvSB543vN58/s400/colorpicker.gif&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5199730227321738370&quot; /&gt;&lt;/a&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/391076632778198778/posts/default/4788208377260570008'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/391076632778198778/posts/default/4788208377260570008'/><link rel='alternate' type='text/html' href='http://web-adobe.blogspot.com/2008/10/tutorial-color-picker.html' title='Tutorial: Color Picker'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi7tyfE6xsGdpbRbQNyq7rCQP5IohV1dg1hhUbNsav5G2nIL6tWa2mPEMN3x_-QTE-ZFVLTV-XdQPVh3R8LMWZ-SeaCKLy5La7ZwyeozZpqZ8Ae-ST3AUKcKYmLQF4wpTzcVvSB543vN58/s72-c/colorpicker.gif" height="72" width="72"/></entry><entry><id>tag:blogger.com,1999:blog-391076632778198778.post-6366948571130658959</id><published>2008-07-31T09:27:00.000-07:00</published><updated>2008-11-24T04:24:42.063-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="SEO Expert"/><title type='text'>SEO Expert</title><content type='html'>&lt;style type=&quot;text/css&quot;&gt;
&lt;!-- 
.TableParam{ border:0; width:100%; padding:0; border-spacing:1; color:#B57DB5; background-color:#FFFEFF}
--&gt;
&lt;/style&gt;

&lt;br/&gt;&lt;br/&gt;
&lt;span style=&quot;FONT-WEIGHT: bold;color:#FF57B2&quot; &gt;
SEO Expert
&lt;/span&gt;
&lt;br/&gt;
Do you know how many web sites publish per day? Now in the internet there have billions of website. So if you publish your site then what happened? Where and how you can get your visitor? If Search Engine not indexed your site then you lose your visitors. But Search Engine optimization is not a easy task. &lt;a href=&quot;http://www.seoexpert.us/&quot;&gt;SEO Expert&lt;/a&gt;  can make this job easy. When you get  consult from SEO Experts then your site will be more visible. 
&lt;br/&gt;&lt;br/&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhxtOmLSQyWvILr3GUrhW_fpLEy-YBjPTDLHvX3pzaxEtvF-lBoKSKSuGbr8p4yTju1nNJrdL-mXlRofmr6f_FpVWfQqlRwLE4ug2gM5Z3BK03ky-9PI5Uo1lUXOPN7_k2xoUUebubINnI/s1600-h/seoexpert.gif&quot;&gt;&lt;img style=&quot;cursor:pointer; cursor:hand;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhxtOmLSQyWvILr3GUrhW_fpLEy-YBjPTDLHvX3pzaxEtvF-lBoKSKSuGbr8p4yTju1nNJrdL-mXlRofmr6f_FpVWfQqlRwLE4ug2gM5Z3BK03ky-9PI5Uo1lUXOPN7_k2xoUUebubINnI/s400/seoexpert.gif&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5229216710721492850&quot; /&gt;&lt;/a&gt;
&lt;br/&gt;&lt;br/&gt;
Now the question is where you can get a SEO Expert?  Recently in this seo market have huge specialist. Maximum have no or little experience. SEO Expert Inc. is the top search engine optimization firm in the United States. Seo Expert doing the search  engine optimization since 1998. Sean O’Brien,  The founder of SEO Expert Inc. have 10+ years experience about Search Engine Optimization work. So you can easily depend on them. They performed SEO for huge startup company and big companies. So it is not a problem that you have  a small or startup business. You can easily consult with this seo experts. SEO Expert Inc.  always keep secret their clients information. So don’t feel any hesitation. They have experts analysts, researchers, optimizers, programmers. They know Search engine algorithm very well.
&lt;br/&gt;&lt;br/&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiNpxv18DvxGUGqHrOVDH2-dGAN09slf2xNXWnjNIJdI0fMHOR-Rxp2GdmXKIVm37xGkxuWesb5bVqaiC4clcrj8MF1oUIht2mqBvrUduW6XzGtEcuiEkJLKylT_oenaL2Cxgqv2Sj4MfM/s1600-h/yahoosearch.gif&quot;&gt;&lt;img style=&quot;cursor:pointer; cursor:hand;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiNpxv18DvxGUGqHrOVDH2-dGAN09slf2xNXWnjNIJdI0fMHOR-Rxp2GdmXKIVm37xGkxuWesb5bVqaiC4clcrj8MF1oUIht2mqBvrUduW6XzGtEcuiEkJLKylT_oenaL2Cxgqv2Sj4MfM/s400/yahoosearch.gif&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5229216940175587794&quot; /&gt;&lt;/a&gt;
&lt;br/&gt;&lt;br/&gt;
What is your business? travel?  tourism?  food?  hotel? or others, this is not fact. Are you know how many company depends on this keyword?  So if your site not on the top list in search result you must loss your visitor. That is the main fact for SEO work. For this issue you should consult with &lt;a href=&quot;http://www.seoexpert.us/&quot;&gt;SEO Experts&lt;/a&gt;  to  optimize your desire keywords. After successful SEO  you  get your site top in the search result.  
&lt;br/&gt;&lt;br/&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjrBVYdHlzUG9pqXtLXL_MKk2btQez5QKyMLducnO2U9LfahWUzQXup2LpwKEJtsWeLZkm3i_EZ_iWwO8pc_g9aU_V7Ka2yVSXI2Ms3tSTshRKInCGyoAXZHi1IBCi2FCatItw-SLqOB4Q/s1600-h/cfzipparam.gif&quot;&gt;&lt;img style=&quot;cursor:pointer; cursor:hand;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjrBVYdHlzUG9pqXtLXL_MKk2btQez5QKyMLducnO2U9LfahWUzQXup2LpwKEJtsWeLZkm3i_EZ_iWwO8pc_g9aU_V7Ka2yVSXI2Ms3tSTshRKInCGyoAXZHi1IBCi2FCatItw-SLqOB4Q/s400/cfzipparam.gif&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5229217063346747234&quot; /&gt;&lt;/a&gt;
&lt;br/&gt;&lt;br/&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/391076632778198778/posts/default/6366948571130658959'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/391076632778198778/posts/default/6366948571130658959'/><link rel='alternate' type='text/html' href='http://web-adobe.blogspot.com/2008/07/seo-expert.html' title='SEO Expert'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhxtOmLSQyWvILr3GUrhW_fpLEy-YBjPTDLHvX3pzaxEtvF-lBoKSKSuGbr8p4yTju1nNJrdL-mXlRofmr6f_FpVWfQqlRwLE4ug2gM5Z3BK03ky-9PI5Uo1lUXOPN7_k2xoUUebubINnI/s72-c/seoexpert.gif" height="72" width="72"/></entry><entry><id>tag:blogger.com,1999:blog-391076632778198778.post-4262033165609481339</id><published>2008-07-04T10:56:00.000-07:00</published><updated>2008-11-24T04:14:31.863-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Hotel Reservation"/><title type='text'>Hotel Reservation</title><content type='html'>&lt;style type=&quot;text/css&quot;&gt;
&lt;!-- 
.TableParam{ border:0; width:100%; padding:0; border-spacing:1; color:#B57DB5; background-color:#FFFEFF}
--&gt;
&lt;/style&gt;

&lt;br/&gt;&lt;br/&gt;
&lt;span style=&quot;FONT-WEIGHT: bold;color:#FF57B2&quot; &gt;
Hotel Reservation
&lt;/span&gt;

&lt;br/&gt;
prontohotel.com is a large online &lt;a href=&quot;http://www.prontohotel.com&quot;&gt;hotel reservations&lt;/a&gt; site.You can easily book your hotel room by this site throughout the world in many countries like United states, United kingdom, France, Germany, Australia , Spain, China, Italy , India , Bangladesh, Denmark , Egypt, Ireland , Japan, Romania etc. You can easily book your room over the internet. You can get various kinds of room, lowest to highest price. 
&lt;br/&gt;&lt;br/&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEixQBXM2Gq1v_7y4rgQVrNTOCeqg_iZiOXvL-_WbjvcgFIO8xkNV2RzVn7QccFGwBAyBFr4hbTURTcUY4meC3FUdjA45Qp-E8Y1uf3x3_cIj7pBy_pYR0ILs9RridDaEstTyziUWLej6FI/s1600-h/hotel_reservation.gif&quot;&gt;&lt;img style=&quot;cursor:pointer; cursor:hand;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEixQBXM2Gq1v_7y4rgQVrNTOCeqg_iZiOXvL-_WbjvcgFIO8xkNV2RzVn7QccFGwBAyBFr4hbTURTcUY4meC3FUdjA45Qp-E8Y1uf3x3_cIj7pBy_pYR0ILs9RridDaEstTyziUWLej6FI/s400/hotel_reservation.gif&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5218487840621733778&quot; /&gt;&lt;/a&gt;
&lt;br/&gt;&lt;br/&gt;


You can reserve a room over this site and will have a chance to roam your choiceable city by your enable rate. prontohotel.com is a very simple and powerful site which give you full of information about hotel reservation. Every day prontohotel.com adjoin new information and become upgraded. In prontohotel.com if one fill up the name of city, check-in time and check-out time, the number of room he want to stay, then he will get his result and a rich information through the internet. 
&lt;br/&gt;&lt;br/&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgJ-iIr9PfQ-N216jpGKE93iq9q2sZkNMuXNt1sQVn8QwyzqBoXqYyX2QW__uyquZyogd1urH_BEQBM7MVELw6Uo6fmo3lFM5RpPqLwUvoqYhcqFikdtKlhJ8iwSgQ3SYDwFkDh0UtXDtw/s1600-h/hotel_reservation_image.gif&quot;&gt;&lt;img style=&quot;cursor:pointer; cursor:hand;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgJ-iIr9PfQ-N216jpGKE93iq9q2sZkNMuXNt1sQVn8QwyzqBoXqYyX2QW__uyquZyogd1urH_BEQBM7MVELw6Uo6fmo3lFM5RpPqLwUvoqYhcqFikdtKlhJ8iwSgQ3SYDwFkDh0UtXDtw/s400/hotel_reservation_image.gif&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5218488634842719922&quot; /&gt;&lt;/a&gt;
&lt;br/&gt;&lt;br/&gt;



&lt;span style=&quot;FONT-WEIGHT: bold;color:#42b2de;&quot; &gt;
Photo Gallery
&lt;/span&gt;

&lt;br/&gt;
&lt;a href=&quot;http://www.prontohotel.com&quot; rel=&quot;nofollow&quot; &gt;prontohotel.com&lt;/a&gt; includes photo gallery, so it&#39;s a great opportunity to choose your hotel. You will have a chance to see different images for a specific hotel. prontohotel.com  born to serve you in each part of your travel.
&lt;br/&gt;&lt;br/&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEizqQ7tuNIw9-Xwgesb6Y8NA_6zg5JNfN-2ptQyNkfTQkExnhSA8UViGJrwxO3poM4g6AewGmVKJIs6ASXw75XyBVAuEJHYVx5NUNk-4NLFBgg-DgSNyQBTSrLTzOqiA10ot9mT7QSSMXg/s1600-h/hotel_reservation_img.gif&quot;&gt;&lt;img style=&quot;cursor:pointer; cursor:hand;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEizqQ7tuNIw9-Xwgesb6Y8NA_6zg5JNfN-2ptQyNkfTQkExnhSA8UViGJrwxO3poM4g6AewGmVKJIs6ASXw75XyBVAuEJHYVx5NUNk-4NLFBgg-DgSNyQBTSrLTzOqiA10ot9mT7QSSMXg/s400/hotel_reservation_img.gif&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5218494278797657554&quot; /&gt;&lt;/a&gt;
&lt;br/&gt;&lt;br/&gt;


&lt;span style=&quot;FONT-WEIGHT: bold;color:#42b2de;&quot; &gt;
Google Map
&lt;/span&gt;

&lt;br/&gt;
The great advantage of  &lt;a href=&quot;http://www.prontohotel.com&quot; rel=&quot;nofollow&quot; &gt;prontohotel.com&lt;/a&gt; is the google map and it&#39;s panoramio&#39;s picture. This maps will give you instraction to follow the right path in the city. By this site, you can able to choose from more than 200 hotels in the world. You can find here many feture hotels like &lt;a href=&quot;http://www.prontohotel.com/nld/amsterdam&quot; rel=&quot;nofollow&quot; &gt;amsterdam hotels&lt;/a&gt;, &lt;a href=&quot;http://www.prontohotel.com/cze/prague&quot; rel=&quot;nofollow&quot; &gt;prague hotels&lt;/a&gt;. You can get enough information about this hotel like map, picture, news , hot tips etc. 
&lt;br/&gt;&lt;br/&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjqve2i0_iiofK4eXaqMxY6Ik2-yaaxaVD8ts0_QMPwEypgSqo70ar5p9ud9bsrJNjZ71CAzNQqLV5i5WVQLl1GNrL31oSC-uOH5jnPZ96MYpNdPQsYLsDh0_qKhwsXf7X4CIPYRd3oPtg/s1600-h/hotel_reservation_map.gif&quot;&gt;&lt;img style=&quot;cursor:pointer; cursor:hand;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjqve2i0_iiofK4eXaqMxY6Ik2-yaaxaVD8ts0_QMPwEypgSqo70ar5p9ud9bsrJNjZ71CAzNQqLV5i5WVQLl1GNrL31oSC-uOH5jnPZ96MYpNdPQsYLsDh0_qKhwsXf7X4CIPYRd3oPtg/s400/hotel_reservation_map.gif&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5218488213992417522&quot; /&gt;&lt;/a&gt;
&lt;br/&gt;&lt;br/&gt;


&lt;span style=&quot;FONT-WEIGHT: bold;color:#42b2de;&quot; &gt;
Why you are waiting?
&lt;/span&gt;

&lt;br/&gt;
It&#39;s simple and interesting ! You will able to join their travellers community that will allow you to get in touch with your travel experience, to post picture, to post comment and to join in  prontohotel.com&#39;s site! Beside this, what you are want ? Why you are waiting ? Fill up the city name, period of time, number of room and book your favaorate hotel. So, click on the search button and their search engine will find for you the best rates any hotel throughout the world. Never forget to come back for your future travel and discovery. Remember, prontohotel.com improves constantly and includes many information day by day.  
&lt;br/&gt;&lt;br/&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhhh8D2TAshYb9B7mROu9qvAizSqzHVjKFDMreiwnjmFoEUPFKjWXOKR1kwi0yoBcm9Uw127eg5ykJ_9MHMBy905Q1DN0Ib51uBgCEkeuTOvD6gfLjngjNig1Xgy-HCUq9Ni3Gk7E26Fb8/s1600-h/amsterdam_hotel.gif&quot;&gt;&lt;img style=&quot;cursor:pointer; cursor:hand;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhhh8D2TAshYb9B7mROu9qvAizSqzHVjKFDMreiwnjmFoEUPFKjWXOKR1kwi0yoBcm9Uw127eg5ykJ_9MHMBy905Q1DN0Ib51uBgCEkeuTOvD6gfLjngjNig1Xgy-HCUq9Ni3Gk7E26Fb8/s400/amsterdam_hotel.gif&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5218495091672327074&quot; /&gt;&lt;/a&gt;
&lt;br/&gt;&lt;br/&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/391076632778198778/posts/default/4262033165609481339'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/391076632778198778/posts/default/4262033165609481339'/><link rel='alternate' type='text/html' href='http://web-adobe.blogspot.com/2008/07/hotel-reservation.html' title='Hotel Reservation'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEixQBXM2Gq1v_7y4rgQVrNTOCeqg_iZiOXvL-_WbjvcgFIO8xkNV2RzVn7QccFGwBAyBFr4hbTURTcUY4meC3FUdjA45Qp-E8Y1uf3x3_cIj7pBy_pYR0ILs9RridDaEstTyziUWLej6FI/s72-c/hotel_reservation.gif" height="72" width="72"/></entry><entry><id>tag:blogger.com,1999:blog-391076632778198778.post-3907869713346190150</id><published>2008-06-23T10:09:00.001-07:00</published><updated>2008-11-24T04:18:12.413-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Starting a Business"/><title type='text'>Starting a Business</title><content type='html'>&lt;style type=&quot;text/css&quot;&gt;
&lt;!-- 
.TableParam{ border:0; width:100%; padding:0; border-spacing:1; color:#B57DB5; background-color:#FFFEFF}
--&gt;
&lt;/style&gt;

&lt;br/&gt;&lt;br/&gt;
&lt;span style=&quot;FONT-WEIGHT: bold;color:#FF57B2&quot; &gt;
Starting a Business
&lt;/span&gt;
&lt;br/&gt;
If you already have a business or you want &lt;a href=&quot;http://sta.rtup.biz/&quot; rel=&quot;nofollow&quot; &gt;starting a business&lt;/a&gt;, Sta.rtUp.biz is the right place for you. The social networking site Sta.rtUp.biz has launched its service offering small business owners with a platform where they can socialize and network with fellow business practitioners. It is a place where you can get all necessary features like LinkedIn, MySpace, FaceBook, and CNNMoney. It is a great feature combination for a new business owner. The other social networking site is full of teens or spammers profile. So it is very difficult to find your business peers profile who can help you for starting or developing your business. Sta.rtUp.biz is an excellent place where all profiles are business related. The site is well designed for support an entrepreneurs. The site is full of resource and easy to use. This is the idle place for share others business experience and knowledge.
&lt;br/&gt;&lt;br/&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiiz_UM_K1ZDQ3piuOOVrCrltu1jDHHYighhsnpwhwj3YriNgZXULYKFqKFYq-sLfmJPKeYSdSND6xvHdwNHhzSWPp9w6X3MyvG74rhor5PEsfP5KWCp-E0jNd-Drv8z0UbvscJULSMWSo/s1600-h/Starting_a_Business.gif&quot;&gt;&lt;img style=&quot;cursor:pointer; cursor:hand;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiiz_UM_K1ZDQ3piuOOVrCrltu1jDHHYighhsnpwhwj3YriNgZXULYKFqKFYq-sLfmJPKeYSdSND6xvHdwNHhzSWPp9w6X3MyvG74rhor5PEsfP5KWCp-E0jNd-Drv8z0UbvscJULSMWSo/s400/Starting_a_Business.gif&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5215126049216746258&quot; /&gt;&lt;/a&gt;
&lt;br/&gt;&lt;br/&gt;

&lt;span style=&quot;FONT-WEIGHT: bold;color:#42b2de;&quot; &gt;
Free Search Engine Optimization
&lt;/span&gt;

&lt;br/&gt;
Everybody knows what the necessity of Search Engine Optimization is. It is not a subject for joke. For successful optimization business, site owners need to consult with experts. The Sta.rtUp.biz gives you the opportunity for &lt;a href=&quot;http://sta.rtup.biz/forum&quot; rel=&quot;nofollow&quot; &gt;Free Search Engine Optimization&lt;/a&gt;. This makes the Sta.rtUp.biz a unique social networking site for small business owners. Sta.rtUp.biz helps the members for improving their sites Google Rankings. Its offers all essential tips, techniques and advice for Search Engine Optimization. Sta.rtUp.biz supports the business owners by providing corporate lawyer who answer the business related legal questions. It&#39;s also has veteran serial entrepreneur who mentors business owners on all management and strategy. The forum has many good discussions for search engine optimization. For your own issue you can open a new discussion thread under appropriate category to get legal advice. It is also a free service.
&lt;br/&gt;&lt;br/&gt;

&lt;span style=&quot;FONT-WEIGHT: bold;color:#42b2de;&quot; &gt;
Motivational Video Clips
&lt;/span&gt;

&lt;br/&gt;
Sta.rtUp.biz video section is excellent and resourceful. The &lt;a href=&quot;http://sta.rtup.biz/video&quot; rel=&quot;nofollow&quot; &gt;Motivational Video Clips&lt;/a&gt; are very helpful for entrepreneurs. Here you can see the tips, techniques, problems, success story. It&#39;s have the power to motivate you to start a business. Sta.rtUp.biz also shows the headline from several top business magazines and journals like INC Magazine, Entrepreneur Magazine, BusinessWeek SmallBiz.
&lt;br/&gt;&lt;br/&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjp_zOFMtwg69tb4BSZBp8iyBBMsPoqk8JY28A7KwB4yr-GwOpRojXeZV4wWz4sTGQMwzvPweLKOASxZjTeVOoOJYvJuuDI1CzrHcfq4EJX4_Y53yn9-sg8BqHmsM-BjaSJyEaAEHvFBzg/s1600-h/Motivational_Video_Clips.gif&quot;&gt;&lt;img style=&quot;cursor:pointer; cursor:hand;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjp_zOFMtwg69tb4BSZBp8iyBBMsPoqk8JY28A7KwB4yr-GwOpRojXeZV4wWz4sTGQMwzvPweLKOASxZjTeVOoOJYvJuuDI1CzrHcfq4EJX4_Y53yn9-sg8BqHmsM-BjaSJyEaAEHvFBzg/s400/Motivational_Video_Clips.gif&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5215126399586010626&quot; /&gt;&lt;/a&gt;
&lt;br/&gt;&lt;br/&gt;

&lt;span style=&quot;FONT-WEIGHT: bold;color:#42b2de;&quot; &gt;
Site Specialty
&lt;/span&gt;

&lt;br/&gt;
Joining the Sta.rtUp.biz is easy, free and takes only half a minute. The site is simple, clean and well designed. Site navigation is very helpful. You can easily invite your friends from Yahoo Mail, Hotmail, GMail or AOL Mail.
&lt;br/&gt;&lt;br/&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/391076632778198778/posts/default/3907869713346190150'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/391076632778198778/posts/default/3907869713346190150'/><link rel='alternate' type='text/html' href='http://web-adobe.blogspot.com/2008/06/starting-business.html' title='Starting a Business'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiiz_UM_K1ZDQ3piuOOVrCrltu1jDHHYighhsnpwhwj3YriNgZXULYKFqKFYq-sLfmJPKeYSdSND6xvHdwNHhzSWPp9w6X3MyvG74rhor5PEsfP5KWCp-E0jNd-Drv8z0UbvscJULSMWSo/s72-c/Starting_a_Business.gif" height="72" width="72"/></entry><entry><id>tag:blogger.com,1999:blog-391076632778198778.post-3632452511282826710</id><published>2008-05-14T00:16:00.000-07:00</published><updated>2008-11-24T04:20:22.983-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial : Hold Output"/><title type='text'>Tutorial : Hold Output</title><content type='html'>&lt;style type=&quot;text/css&quot;&gt;
&lt;!-- 
.TableParam{ border:0; width:100%; padding:0; border-spacing:1; color:#B57DB5; background-color:#FFFEFF}
.SecondTableParam{ border:0; width:100%; padding:0; border-spacing:1; color:#B57DB5; background-color:#fffffe}

--&gt;
&lt;/style&gt;

&lt;br&gt;&lt;br&gt;
&lt;span style=&quot;FONT-WEIGHT: bold;color:#FF57B2&quot; &gt;
Coldfusion Tutorial : Hold Output 
&lt;/span&gt;
&lt;br&gt;&lt;br&gt;

&lt;span style=&quot;FONT-WEIGHT: bold;color:#42b2de;&quot; &gt;
 Description
&lt;/span&gt;

&lt;br&gt;
A simple techniqe for hold coldfusion page output for a few time.
&lt;br&gt;&lt;br&gt;


&lt;span style=&quot;FONT-WEIGHT: bold;color:#42b2de;&quot; &gt;
 Example
&lt;/span&gt;
&lt;br&gt;&lt;br&gt;
holdoutput.cfm
&lt;br&gt;

&lt;div style=&quot;overflow-x:scroll; width:375; background-color:#E8E8E8&quot;&gt;
 &lt;font color=&quot;#646464&quot;&gt;
  &lt;code&gt;
   &lt;pre&gt;

&amp;lt;cfflush interval=&quot;1&quot;&amp;gt;

&amp;lt;cfset startTime=TimeFormat(Now(),&quot;hh:mm:ss&quot;)&amp;gt;
&amp;lt;cfset stopTime=TimeFormat(DateAdd(&quot;s&quot;,30,startTime),&quot;hh:mm:ss&quot;)&amp;gt;
&amp;lt;cfset endTime=TimeFormat(DateAdd(&quot;s&quot;,1,startTime),&quot;hh:mm:ss&quot;)&amp;gt;

&amp;lt;cfoutput&amp;gt;Start Time : #startTime#&amp;lt;/cfoutput&amp;gt;&amp;lt;br/&amp;gt;
&amp;lt;hr/&amp;gt;
&amp;lt;cfloop condition=&quot; startTime NEQ endTime&quot;&amp;gt;
 &amp;lt;cfset startTime=TimeFormat(Now(),&quot;hh:mm:ss&quot;)&amp;gt;
 &amp;lt;cfif startTime EQ endTime&amp;gt;
  &amp;lt;cfoutput&amp;gt;Now Time : #endTime#&amp;lt;/cfoutput&amp;gt;&amp;lt;br/&amp;gt;
  &amp;lt;cfset endTime=TimeFormat(DateAdd(&quot;s&quot;,1,startTime),&quot;hh:mm:ss&quot;)&amp;gt;
 &amp;lt;/cfif&amp;gt;
 &amp;lt;cfif startTime GTE stopTime&amp;gt;
  &amp;lt;cfbreak&amp;gt;
 &amp;lt;/cfif&amp;gt;
&amp;lt;/cfloop&amp;gt;

   &lt;/pre&gt;
  &lt;/code&gt;
 &lt;/font&gt;
&lt;/div&gt;


&lt;br&gt;&lt;br&gt;
&lt;span style=&quot;FONT-WEIGHT: bold;color:#42b2de;&quot; &gt;
 Example Output
&lt;/span&gt;
&lt;br&gt;&lt;br&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgaiJzardSnX7mDB4NyULwdHUwljZFrgWOoF16svWqlCV4y5-XOsrnIUHjRUrDyQGbT5UpcO7VHEw_udoSKWCG7jfj2NpW2c2qWbRtTNE1lL8ERwul9DMWKJPboJsNw2KxLF3dFKBPL9YI/s1600-h/holdoutput.gif&quot;&gt;&lt;img style=&quot;cursor:pointer; cursor:hand;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgaiJzardSnX7mDB4NyULwdHUwljZFrgWOoF16svWqlCV4y5-XOsrnIUHjRUrDyQGbT5UpcO7VHEw_udoSKWCG7jfj2NpW2c2qWbRtTNE1lL8ERwul9DMWKJPboJsNw2KxLF3dFKBPL9YI/s400/holdoutput.gif&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5200129624920528018&quot; /&gt;&lt;/a&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/391076632778198778/posts/default/3632452511282826710'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/391076632778198778/posts/default/3632452511282826710'/><link rel='alternate' type='text/html' href='http://web-adobe.blogspot.com/2008/05/coldfusion-tutorial-hold-output.html' title='Tutorial : Hold Output'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgaiJzardSnX7mDB4NyULwdHUwljZFrgWOoF16svWqlCV4y5-XOsrnIUHjRUrDyQGbT5UpcO7VHEw_udoSKWCG7jfj2NpW2c2qWbRtTNE1lL8ERwul9DMWKJPboJsNw2KxLF3dFKBPL9YI/s72-c/holdoutput.gif" height="72" width="72"/></entry><entry><id>tag:blogger.com,1999:blog-391076632778198778.post-5109372829569670237</id><published>2008-05-12T22:11:00.001-07:00</published><updated>2008-11-24T04:20:46.948-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial : Slide Show"/><title type='text'>Tutorial : Slide Show</title><content type='html'>&lt;style type=&quot;text/css&quot;&gt;
&lt;!-- 
.TableParam{ border:0; width:100%; padding:0; border-spacing:1; color:#B57DB5; background-color:#FFFEFF}
.SecondTableParam{ border:0; width:100%; padding:0; border-spacing:1; color:#B57DB5; background-color:#fffffe}

--&gt;
&lt;/style&gt;

&lt;br&gt;&lt;br&gt;
&lt;span style=&quot;FONT-WEIGHT: bold;color:#FF57B2&quot; &gt;
Coldfusion Tutorial: Slide Show
&lt;/span&gt;
&lt;br&gt;&lt;br&gt;

&lt;span style=&quot;FONT-WEIGHT: bold;color:#42b2de;&quot; &gt;
 Description
&lt;/span&gt;

&lt;br&gt;
Just create a file slideshow.cfm and a image folder.You must enable the session in application page.
&lt;br&gt;&lt;br&gt;

&lt;br&gt;&lt;br&gt;
&lt;span style=&quot;FONT-WEIGHT: bold;color:#42b2de;&quot; &gt;
 Example
&lt;/span&gt;
&lt;br&gt;&lt;br&gt;
slideshow.cfm page
&lt;br&gt;

&lt;div style=&quot;overflow-x:scroll; width:375; background-color:#E8E8E8&quot;&gt;
 &lt;font color=&quot;#646464&quot;&gt;
  &lt;code&gt;
   &lt;pre&gt;

&amp;lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&amp;gt;
&amp;lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&amp;gt;
&amp;lt;head&amp;gt;
&amp;lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot; /&amp;gt;
&amp;lt;meta http-equiv=&quot;refresh&quot; content=&quot;5&quot;/&amp;gt;
&amp;lt;title&amp;gt;Slide Show&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;

&amp;lt;body&amp;gt;

 &amp;lt;cfset templatePath=GetBaseTemplatePath()&amp;gt;
 &amp;lt;cfset rootFolder=ListDeleteAt(templatePath,ListLen(templatePath,&quot;/\&quot;),&quot;/\&quot;)&amp;gt;
 &amp;lt;cfset imageFolderPath=&quot;#rootFolder#\images&quot;&amp;gt;
 
 &amp;lt;cfdirectory action=&quot;list&quot; directory=&quot;#imageFolderPath#&quot; name=&quot;ImageList&quot;&amp;gt;
 &amp;lt;cfif Not IsDefined(&quot;session.Counter&quot;) OR session.Counter GTE ImageList.RecordCount&amp;gt;
  &amp;lt;cfset session.Counter=0&amp;gt;
 &amp;lt;/cfif&amp;gt;
 &amp;lt;cfset session.Counter=session.Counter+1&amp;gt;
 &amp;lt;cfoutput&amp;gt;&amp;lt;img src=&quot;#imageFolderPath#\#ImageList.name[session.Counter]#&quot;/&amp;gt;&amp;lt;/cfoutput&amp;gt;
 
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;

   &lt;/pre&gt;
  &lt;/code&gt;
 &lt;/font&gt;
&lt;/div&gt;


&lt;br&gt;&lt;br&gt;
&lt;span style=&quot;FONT-WEIGHT: bold;color:#42b2de;&quot; &gt;
 Example Output
&lt;/span&gt;
&lt;br&gt;&lt;br&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjI59jN7D9UPAGmusj_Pletrm_HyDBd5vUXvb29RHphO6wx54YYRPgOLpQd5-qbLrdQMWpjq4NhsnD72N0LbetSpyhT7wDohZrS44jkxIRAW5985nQ00kSDZg80DUcM2wRPJyelT5waJxs/s1600-h/slideshow.gif&quot;&gt;&lt;img style=&quot;cursor:pointer; cursor:hand;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjI59jN7D9UPAGmusj_Pletrm_HyDBd5vUXvb29RHphO6wx54YYRPgOLpQd5-qbLrdQMWpjq4NhsnD72N0LbetSpyhT7wDohZrS44jkxIRAW5985nQ00kSDZg80DUcM2wRPJyelT5waJxs/s400/slideshow.gif&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5199726061203461234&quot; /&gt;&lt;/a&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/391076632778198778/posts/default/5109372829569670237'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/391076632778198778/posts/default/5109372829569670237'/><link rel='alternate' type='text/html' href='http://web-adobe.blogspot.com/2008/05/coldfusion-tutorial-slide-show.html' title='Tutorial : Slide Show'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjI59jN7D9UPAGmusj_Pletrm_HyDBd5vUXvb29RHphO6wx54YYRPgOLpQd5-qbLrdQMWpjq4NhsnD72N0LbetSpyhT7wDohZrS44jkxIRAW5985nQ00kSDZg80DUcM2wRPJyelT5waJxs/s72-c/slideshow.gif" height="72" width="72"/></entry><entry><id>tag:blogger.com,1999:blog-391076632778198778.post-4171713489800441550</id><published>2008-01-24T02:40:00.000-08:00</published><updated>2008-11-24T04:21:23.652-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial : User Login"/><title type='text'>Tutorial : User Login</title><content type='html'>&lt;style type=&quot;text/css&quot;&gt;
&lt;!-- 
.TableParam{ border:0; width:100%; padding:0; border-spacing:1; color:#B57DB5; background-color:#FFFEFF}
--&gt;
&lt;/style&gt;

&lt;pre&gt;
First create the application.cfm file in your root folder,then write this code.
&lt;/pre&gt;
&lt;br/&gt;

&lt;span style=&quot;FONT-WEIGHT: bold;color:#FF57B2&quot; &gt;
Application.cfm
&lt;/span&gt;

&lt;div style=&quot;overflow-x:scroll; width:375; background-color:#E8E8E8&quot;&gt;
 &lt;font color=&quot;#646464&quot;&gt;
  &lt;code&gt;
   &lt;pre&gt;
 &amp;lt;cfapplication name=&quot;cfcentral&quot;
    sessionmanagement=&quot;true&quot;
    sessiontimeout=&quot;#CreateTimeSpan(0,0,30,0)#&quot;
    /&amp;gt;
  &amp;lt;cfset application.dsname=&quot;suman&quot;&amp;gt;
  &amp;lt;cfset request.dsname=&quot;suman&quot;&amp;gt;
  &amp;lt;cfset session.profile=StructNew()&amp;gt;
 
 &amp;lt;cfif IsDefined(&quot;Form.logout&quot;)&amp;gt;
  &amp;lt;cflogout&amp;gt;
 &amp;lt;/cfif&amp;gt;
 
 &amp;lt;cflogin&amp;gt;
  &amp;lt;cfif NOT IsDefined(&quot;cflogin&quot;)&amp;gt;
   &amp;lt;cfinclude template=&quot;loginform.cfm&quot;&amp;gt;
   &amp;lt;cfabort&amp;gt;
  &amp;lt;cfelse&amp;gt;
   &amp;lt;cfif cflogin.name IS &quot;&quot; OR cflogin.password IS &quot;&quot;&amp;gt;
    &amp;lt;cfoutput&amp;gt;
  &amp;lt;h2&amp;gt;You must enter text in both the User Name and Password fields.     &amp;lt;/h2&amp;gt;
    &amp;lt;/cfoutput&amp;gt;
    &amp;lt;cfinclude template=&quot;loginform.cfm&quot;&amp;gt;
    &amp;lt;cfabort&amp;gt;
   &amp;lt;cfelse&amp;gt;
    &amp;lt;cfquery name=&quot;loginQuery&quot; dataSource=&quot;#request.dsname#&quot;&amp;gt;
    SELECT AdminName, Role
    FROM admin
    WHERE
  AdminName = &#39;#cflogin.name#&#39;
  AND Password = &#39;#cflogin.password#&#39;
    &amp;lt;/cfquery&amp;gt;
    &amp;lt;cfif loginQuery.Role NEQ &quot;&quot;&amp;gt;
  &amp;lt;cfloginuser name=&quot;#cflogin.name#&quot; Password = &quot;#cflogin.password#&quot;
   roles=&quot;#loginQuery.Role#&quot;&amp;gt;
    &amp;lt;cfelse&amp;gt;
  &amp;lt;cfoutput&amp;gt;
   &amp;lt;H2&amp;gt;Your login information is not valid.&amp;lt;br&amp;gt;
   Please Try again&amp;lt;/H2&amp;gt;
  &amp;lt;/cfoutput&amp;gt; 
  &amp;lt;cfinclude template=&quot;loginform.cfm&quot;&amp;gt;
  &amp;lt;cfabort&amp;gt;
    &amp;lt;/cfif&amp;gt;
   &amp;lt;/cfif&amp;gt; 
  &amp;lt;/cfif&amp;gt;
 &amp;lt;/cflogin&amp;gt;
 
 &amp;lt;cfif GetAuthUser() NEQ &quot;&quot;&amp;gt;
  &amp;lt;cfoutput&amp;gt;
   &amp;lt;form action=&quot;#CGI.script_name#?#CGI.query_string#&quot; method=&quot;Post&quot;&amp;gt;
    &amp;lt;input type=&quot;submit&quot; Name=&quot;Logout&quot; value=&quot;Logout&quot;&amp;gt;
   &amp;lt;/form&amp;gt;
  &amp;lt;/cfoutput&amp;gt;
 &amp;lt;/cfif&amp;gt;
   &lt;/pre&gt;
  &lt;/code&gt;
 &lt;/font&gt;
&lt;/div&gt;

&lt;pre&gt;
Second create loginform.cfm file in your root folder.
&lt;/pre&gt;
&lt;br/&gt;

&lt;span style=&quot;FONT-WEIGHT: bold;color:#FF57B2&quot; &gt;
loginform.cfm
&lt;/span&gt;

&lt;div style=&quot;overflow-x:scroll; width:375; background-color:#E8E8E8&quot;&gt;
 &lt;font color=&quot;#646464&quot;&gt;
  &lt;code&gt;
   &lt;pre&gt;
 Please Log In
 
 &amp;lt;cfoutput&amp;gt;
    &amp;lt;form name=&quot;LoginForm&quot; action=&quot;#CGI.script_name#?#CGI.query_string#&quot; method=&quot;Post&quot;&amp;gt;
    &amp;lt;table&amp;gt;
    &amp;lt;tr&amp;gt;
    &amp;lt;td&amp;gt;username:&amp;lt;/td&amp;gt;
    &amp;lt;td&amp;gt;&amp;lt;input type=&quot;text&quot; name=&quot;j_userName&quot;&amp;gt;&amp;lt;/td&amp;gt;
    &amp;lt;/tr&amp;gt;
    &amp;lt;tr&amp;gt;
    &amp;lt;td&amp;gt;password:&amp;lt;/td&amp;gt;
    &amp;lt;td&amp;gt;&amp;lt;input type=&quot;password&quot; name=&quot;j_password&quot;&amp;gt;&amp;lt;/td&amp;gt;
    &amp;lt;/tr&amp;gt;
    &amp;lt;/table&amp;gt;
    &amp;lt;br&amp;gt;
    &amp;lt;input type=&quot;submit&quot; value=&quot;Log In&quot;&amp;gt;
    &amp;lt;/form&amp;gt;
 &amp;lt;/cfoutput&amp;gt;
   &lt;/pre&gt;
  &lt;/code&gt;
 &lt;/font&gt;
&lt;/div&gt;

&lt;pre&gt;
Craete a table name admin with AdminName,Password,Role field.

WOW its done 
&lt;/pre&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/391076632778198778/posts/default/4171713489800441550'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/391076632778198778/posts/default/4171713489800441550'/><link rel='alternate' type='text/html' href='http://web-adobe.blogspot.com/2008/01/tutorial-user-login.html' title='Tutorial : User Login'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-391076632778198778.post-6740957505260917550</id><published>2008-01-24T02:39:00.000-08:00</published><updated>2008-11-24T04:22:02.075-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial : Pagination"/><title type='text'>Tutorial : Pagination</title><content type='html'>&lt;style type=&quot;text/css&quot;&gt;
&lt;!-- 
.TableParam{ border:0; width:100%; padding:0; border-spacing:1; color:#B57DB5; background-color:#FFFEFF}
--&gt;
&lt;/style&gt;


&lt;pre&gt;
hi,
here i introduce pagination technique.this very simple and esay.
this examples first part i only shows how you can make a data show page
with pagination.lets done...

create a page with name pagination.cfm,here the code bellow
&lt;/pre&gt;
&lt;br/&gt;

&lt;span style=&quot;FONT-WEIGHT: bold;color:#FF57B2&quot; &gt;
pagination.cfm
&lt;/span&gt;

&lt;div style=&quot;overflow-x:scroll; width:375; background-color:#E8E8E8&quot;&gt;
 &lt;font color=&quot;#646464&quot;&gt;
  &lt;code&gt;
   &lt;pre&gt;
 &amp;lt;cfparam name=&quot;request.dsname&quot; default=&quot;suman&quot;&amp;gt;
 &amp;lt;cfparam name=&quot;TableName&quot; default=&quot;admin&quot;&amp;gt;
 &amp;lt;cfparam name=&quot;MaxRow&quot; default=&quot;5&quot;&amp;gt;
 &amp;lt;cfparam name=&quot;url.PageNumber&quot; default=&quot;1&quot;&amp;gt;
 
 &amp;lt;cfif NOT IsDefined(&quot;session.qSelectQuery&quot;) OR IsDefined(&quot;url.CreateNewSession&quot;)&amp;gt;
  &amp;lt;cfquery name=&quot;session.qSelectQuery&quot; datasource=&quot;#request.dsname#&quot;&amp;gt;
   SELECT *
   FROM #TableName#
  &amp;lt;/cfquery&amp;gt;
 &amp;lt;/cfif&amp;gt;
 
 &amp;lt;cftable query=&quot;session.qSelectQuery&quot; startrow=&quot;#((url.PageNumber*MaxRow)-MaxRow)+1#&quot; maxrows=&quot;#MaxRow#&quot; colheaders=&quot;yes&quot;&amp;gt;
  &amp;lt;cfloop list=&quot;#session.qSelectQuery.ColumnList#&quot; index=&quot;Column&quot;&amp;gt;
    &amp;lt;cfcol text=&quot;#Evaluate(Column)#&quot; header=&quot;#Column#&quot;&amp;gt;
  &amp;lt;/cfloop&amp;gt;
 &amp;lt;/cftable&amp;gt;
 
 &amp;lt;cfoutput&amp;gt;
  &amp;lt;cfloop from=&quot;1&quot; to=&quot;#Ceiling(session.qSelectQuery.RecordCount/MaxRow)#&quot; index=&quot;i&quot;&amp;gt;
    &amp;lt;a href=&quot;#CGI.SCRIPT_NAME#?PageNumber=#i#&quot;&amp;gt;#i#&amp;lt;/a&amp;gt;
  &amp;lt;/cfloop&amp;gt;
  .........page #url.PageNumber# of #Ceiling(session.qSelectQuery.RecordCount/MaxRow)#......
  &amp;lt;a href=&quot;#CGI.SCRIPT_NAME#?CreateNewSession&quot;&amp;gt;run the select query again&amp;lt;/a&amp;gt;
 &amp;lt;/cfoutput&amp;gt;
   &lt;/pre&gt;
  &lt;/code&gt;
 &lt;/font&gt;
&lt;/div&gt;


&lt;pre&gt;
change the parameter as you need.then check with browser.
what you see...yes its done.

for reusable pagination technique read the second part.
&lt;/pre&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/391076632778198778/posts/default/6740957505260917550'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/391076632778198778/posts/default/6740957505260917550'/><link rel='alternate' type='text/html' href='http://web-adobe.blogspot.com/2008/01/tutorial-pagination.html' title='Tutorial : Pagination'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-391076632778198778.post-9135483708248433159</id><published>2008-01-24T02:38:00.000-08:00</published><updated>2008-11-24T04:22:26.205-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial : Pagination (Function based)"/><title type='text'>Tutorial : Pagination (Function based)</title><content type='html'>&lt;style type=&quot;text/css&quot;&gt;
&lt;!-- 
.TableParam{ border:0; width:100%; padding:0; border-spacing:1; color:#B57DB5; background-color:#FFFEFF}
--&gt;
&lt;/style&gt;

&lt;pre&gt;
hi,
this is second part of pagination example.here i show pagination technique
that is reusable.at first i create a function for pagination then call it when need.
lets do the job.

create a page name pagination.cfm,code bellow.
&lt;/pre&gt;
&lt;br/&gt;

&lt;span style=&quot;FONT-WEIGHT: bold;color:#FF57B2&quot; &gt;
pagination.cfm
&lt;/span&gt;

&lt;div style=&quot;overflow-x:scroll; width:375; background-color:#E8E8E8&quot;&gt;
 &lt;font color=&quot;#646464&quot;&gt;
  &lt;code&gt;
   &lt;pre&gt;
 &amp;lt;cfoutput&amp;gt;#Pagination(&quot;Suman&quot;,&quot;admin&quot;)#&amp;lt;/cfoutput&amp;gt;
 
 &amp;lt;cffunction name=&quot;Pagination&quot; access=&quot;remote&quot; returntype=&quot;any&quot; output=&quot;yes&quot;&amp;gt;
  &amp;lt;cfargument name=&quot;dsname&quot; required=&quot;yes&quot;&amp;gt;
  &amp;lt;cfargument name=&quot;TableName&quot; required=&quot;yes&quot;&amp;gt;
  &amp;lt;cfargument name=&quot;MaxRow&quot; default=&quot;10&quot; required=&quot;no&quot;&amp;gt;
  
  &amp;lt;cfparam name=&quot;url.PageNumber&quot; default=&quot;1&quot;&amp;gt;
  
  &amp;lt;cfif NOT IsDefined(&quot;session.qSelectQuery&quot;) OR IsDefined(&quot;url.CreateNewSession&quot;)&amp;gt;
   &amp;lt;cfquery name=&quot;session.qSelectQuery&quot; datasource=&quot;#dsname#&quot;&amp;gt;
    SELECT *
    FROM #TableName#
   &amp;lt;/cfquery&amp;gt;
  &amp;lt;/cfif&amp;gt;
  
  &amp;lt;cftable query=&quot;session.qSelectQuery&quot; startrow=&quot;#((url.PageNumber*MaxRow)-MaxRow)+1#&quot; maxrows=&quot;#MaxRow#&quot; colheaders=&quot;yes&quot;&amp;gt;
   &amp;lt;cfloop list=&quot;#session.qSelectQuery.ColumnList#&quot; index=&quot;Column&quot;&amp;gt;
  &amp;lt;cfcol text=&quot;#Evaluate(Column)#&quot; header=&quot;#Column#&quot;&amp;gt;
   &amp;lt;/cfloop&amp;gt;
  &amp;lt;/cftable&amp;gt;
  
  &amp;lt;cfoutput&amp;gt;
   &amp;lt;cfloop from=&quot;1&quot; to=&quot;#Ceiling(session.qSelectQuery.RecordCount/MaxRow)#&quot; index=&quot;i&quot;&amp;gt;
  &amp;lt;a href=&quot;#CGI.SCRIPT_NAME#?PageNumber=#i#&quot;&amp;gt;#i#&amp;lt;/a&amp;gt;
   &amp;lt;/cfloop&amp;gt;
   .........page #url.PageNumber# of #Ceiling(session.qSelectQuery.RecordCount/MaxRow)#......
   &amp;lt;a href=&quot;#CGI.SCRIPT_NAME#?CreateNewSession&quot;&amp;gt;run the select query again&amp;lt;/a&amp;gt;
  &amp;lt;/cfoutput&amp;gt;
 &amp;lt;/cffunction&amp;gt;
   &lt;/pre&gt;
  &lt;/code&gt;
 &lt;/font&gt;
&lt;/div&gt;


&lt;pre&gt;
the pagination function is done.you can use it in your page more than one
time without write huge code....
&lt;/pre&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/391076632778198778/posts/default/9135483708248433159'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/391076632778198778/posts/default/9135483708248433159'/><link rel='alternate' type='text/html' href='http://web-adobe.blogspot.com/2008/01/tutorial-pagination-function-based.html' title='Tutorial : Pagination (Function based)'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-391076632778198778.post-4817057822245528067</id><published>2008-01-24T02:37:00.001-08:00</published><updated>2008-11-24T04:22:48.497-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial : Pagination (Component based)"/><title type='text'>Tutorial : Pagination (Component based)</title><content type='html'>&lt;style type=&quot;text/css&quot;&gt;
&lt;!-- 
.TableParam{ border:0; width:100%; padding:0; border-spacing:1; color:#B57DB5; background-color:#FFFEFF}
--&gt;
&lt;/style&gt;


&lt;pre&gt;
hi,
this is the final part of pagination example.here i use object oriented coldfusion.
this create a pagination object which you can call anywhere in your application.

here you need to create to file named pagination.cfc and pagination.cfm
for simpler issue you should place the both file in a common folder.
the code goes bellow.
&lt;/pre&gt;
&lt;br/&gt;

&lt;span style=&quot;FONT-WEIGHT: bold;color:#FF57B2&quot; &gt;
pagination.cfc
&lt;/span&gt;

&lt;div style=&quot;overflow-x:scroll; width:375; background-color:#E8E8E8&quot;&gt;
 &lt;font color=&quot;#646464&quot;&gt;
  &lt;code&gt;
   &lt;pre&gt;
 &amp;lt;cfcomponent author=&quot;cfsuman@gmail.com&quot;&amp;gt;
  &amp;lt;cffunction name=&quot;Pagination&quot; access=&quot;remote&quot; returntype=&quot;any&quot; output=&quot;yes&quot;&amp;gt;
   &amp;lt;cfargument name=&quot;dsname&quot; required=&quot;yes&quot;&amp;gt;
   &amp;lt;cfargument name=&quot;TableName&quot; required=&quot;yes&quot;&amp;gt;
   &amp;lt;cfargument name=&quot;MaxRow&quot; default=&quot;10&quot; required=&quot;no&quot;&amp;gt;
   
   &amp;lt;cfparam name=&quot;url.PageNumber&quot; default=&quot;1&quot;&amp;gt;
   
   &amp;lt;cfif NOT IsDefined(&quot;session.qSelectQuery&quot;) OR IsDefined(&quot;url.CreateNewSession&quot;)&amp;gt;
    &amp;lt;cfquery name=&quot;session.qSelectQuery&quot; datasource=&quot;#dsname#&quot;&amp;gt;
  SELECT *
  FROM #TableName#
    &amp;lt;/cfquery&amp;gt;
   &amp;lt;/cfif&amp;gt;
   
   &amp;lt;cftable query=&quot;session.qSelectQuery&quot; startrow=&quot;#((url.PageNumber*MaxRow)-MaxRow)+1#&quot; maxrows=&quot;#MaxRow#&quot; colheaders=&quot;yes&quot;&amp;gt;
    &amp;lt;cfloop list=&quot;#session.qSelectQuery.ColumnList#&quot; index=&quot;Column&quot;&amp;gt;
   &amp;lt;cfcol text=&quot;#Evaluate(Column)#&quot; header=&quot;#Column#&quot;&amp;gt;
    &amp;lt;/cfloop&amp;gt;
   &amp;lt;/cftable&amp;gt;
   
   &amp;lt;cfoutput&amp;gt;
    &amp;lt;cfloop from=&quot;1&quot; to=&quot;#Ceiling(session.qSelectQuery.RecordCount/MaxRow)#&quot; index=&quot;i&quot;&amp;gt;
   &amp;lt;a href=&quot;#CGI.SCRIPT_NAME#?PageNumber=#i#&quot;&amp;gt;#i#&amp;lt;/a&amp;gt;
    &amp;lt;/cfloop&amp;gt;
    .........page #url.PageNumber# of #Ceiling(session.qSelectQuery.RecordCount/MaxRow)#......
    &amp;lt;a href=&quot;#CGI.SCRIPT_NAME#?CreateNewSession&quot;&amp;gt;run the select query again&amp;lt;/a&amp;gt;
   &amp;lt;/cfoutput&amp;gt;
  &amp;lt;/cffunction&amp;gt;
 &amp;lt;/cfcomponent&amp;gt;
   &lt;/pre&gt;
  &lt;/code&gt;
 &lt;/font&gt;
&lt;/div&gt;

&lt;span style=&quot;FONT-WEIGHT: bold;color:#FF57B2&quot; &gt;
pagination.cfm
&lt;/span&gt;

&lt;div style=&quot;overflow-x:scroll; width:375; background-color:#E8E8E8&quot;&gt;
 &lt;font color=&quot;#646464&quot;&gt;
  &lt;code&gt;
   &lt;pre&gt;
 &amp;lt;cfscript&amp;gt;
  PaginationObject=Createobject(&quot;Component&quot;,&quot;pagination&quot;);
 &amp;lt;/cfscript&amp;gt;
 
 &amp;lt;cfset PaginationObject.Pagination(&quot;suman&quot;,&quot;admin&quot;)&amp;gt;
   &lt;/pre&gt;
  &lt;/code&gt;
 &lt;/font&gt;
&lt;/div&gt;

&lt;pre&gt;
hei now run the pagination.cfm file in your browser.
whats hapend?yes this call object oriented web programming.

&lt;/pre&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/391076632778198778/posts/default/4817057822245528067'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/391076632778198778/posts/default/4817057822245528067'/><link rel='alternate' type='text/html' href='http://web-adobe.blogspot.com/2008/01/tutorial-pagination-component-based.html' title='Tutorial : Pagination (Component based)'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-391076632778198778.post-3556814630185809813</id><published>2008-01-24T02:35:00.000-08:00</published><updated>2008-11-24T04:23:24.142-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial :  Application code documentation"/><title type='text'>Tutorial :  Application code documentation</title><content type='html'>&lt;style type=&quot;text/css&quot;&gt;
&lt;!-- 
.TableParam{ border:0; width:100%; padding:0; border-spacing:1; color:#B57DB5; background-color:#FFFEFF}
--&gt;
&lt;/style&gt;


&lt;pre&gt;
&lt;b&gt;&lt;font color=&quot;red&quot;&gt;
Note: very recent i found little bug in this tutorial.
Soon i will fix it.
If you want then you may fix it.
This a challange for you...
&lt;/font&gt;&lt;/b&gt;

hi,
here i show a object oriented technique for documented your code.
when you build your site then you may want a pdf file here you can get all of your code.for this purpose you can try it.

for this create two file in your application root folder named codedocumentation.cfc and codedocumentation.cfm,here the both file code.
&lt;/pre&gt;
&lt;br/&gt;

&lt;span style=&quot;FONT-WEIGHT: bold;color:#FF57B2&quot; &gt;
codedocumentation.cfc
&lt;/span&gt;

&lt;div style=&quot;overflow-x:scroll; width:375; background-color:#E8E8E8&quot;&gt;
 &lt;font color=&quot;#646464&quot;&gt;
  &lt;code&gt;
   &lt;pre&gt;
 &amp;lt;cfcomponent hint=&quot;Create Code Documentation&quot; output=&quot;yes&quot;&amp;gt;
 
  &amp;lt;cffunction name=&quot;GetApplicationMap&quot; access=&quot;remote&quot; returntype=&quot;array&quot;&amp;gt;
 
   &amp;lt;cfargument name=&quot;SiteRootDirectory&quot; type=&quot;string&quot; required=&quot;yes&quot;&amp;gt;  
   &amp;lt;cfargument name=&quot;OutputFileFormat&quot; type=&quot;string&quot; required=&quot;yes&quot;&amp;gt;    
  
   &amp;lt;cfset FolderExploreStatus=0&amp;gt;
 
   &amp;lt;!--- Create a Array for hold all  Files List---&amp;gt;  
   &amp;lt;cfset FileArray=Arraynew(2)&amp;gt;
 
   &amp;lt;!---Root Directory&#39;s Contents---&amp;gt;
   &amp;lt;cfdirectory action=&quot;list&quot;
    directory=&quot;#arguments.SiteRootDirectory#&quot;
    name=&quot;ParentDirectory&quot;
    &amp;gt;
 
   &amp;lt;!---Root Directory&#39;s Directory---&amp;gt;
   &amp;lt;cfquery name=&quot;DirectoryList&quot; dbtype=&quot;query&quot;&amp;gt;
    SELECT *
    FROM ParentDirectory
    WHERE TYPE=&#39;Dir&#39;
   &amp;lt;/cfquery&amp;gt;
   
   &amp;lt;!---List of all Folder Path---&amp;gt;
   &amp;lt;cfset FolderPathArray=Arraynew(1)&amp;gt;
   &amp;lt;cfset TempFolderPathArray=ArrayAppend(FolderPathArray,arguments.SiteRootDirectory)&amp;gt;
   &amp;lt;!---&amp;lt;cfdump var=&quot;#FolderPathArray#&quot;&amp;gt;&amp;lt;br/&amp;gt;---&amp;gt;
   
 
   &amp;lt;!--- Create a Array for hold  Folder List---&amp;gt;  
   &amp;lt;cfset FolderArray=ArrayNew(2)&amp;gt;
 
   &amp;lt;cfset FolderCounter=1&amp;gt;
   &amp;lt;cfloop query=&quot;DirectoryList&quot;&amp;gt;
    &amp;lt;cfset FolderArray[FolderCounter][1]=DIRECTORY&amp;gt;
    &amp;lt;cfset FolderArray[FolderCounter][2]=NAME&amp;gt;
    
    &amp;lt;cfset FolderPath=&quot;#DIRECTORY#\#NAME#\&quot;&amp;gt;
    &amp;lt;!---&amp;lt;cfdump var=&quot;#FolderPath#&quot;&amp;gt;&amp;lt;br/&amp;gt;---&amp;gt;
    &amp;lt;cfset TempFolderPathArray=ArrayAppend(FolderPathArray,FolderPath)&amp;gt;
    &amp;lt;cfset FolderCounter=FolderCounter+1&amp;gt;
   &amp;lt;/cfloop&amp;gt;
 
   &amp;lt;cfset FolderNumber=ArrayLen(FolderArray)&amp;gt;
  
   &amp;lt;cfif FolderNumber GT 0&amp;gt;
    &amp;lt;cfloop condition=&quot; FolderExploreStatus EQ 0 &quot;&amp;gt;
  &amp;lt;cfset CurrentFolderDirectory=FolderArray[1][1]&amp;gt;
  &amp;lt;cfset CurrentFolderName=FolderArray[1][2]&amp;gt;
  
  &amp;lt;cfset CurrentFolderPath=&quot;#CurrentFolderDirectory#\#CurrentFolderName#\&quot;&amp;gt;
  
  &amp;lt;!--- List the Current directory&#39;s Directory---&amp;gt;  
  &amp;lt;cfdirectory
   action=&quot;list&quot;
   name=&quot;ChildDirectory&quot;
   directory=&quot;#CurrentFolderPath#&quot;
   &amp;gt; 
 
  &amp;lt;!--- List the Current directory&#39;s Directory---&amp;gt;  
  &amp;lt;cfquery name=&quot;ChildDirectoryList&quot; dbtype=&quot;query&quot;&amp;gt;    
   SELECT *
   FROM ChildDirectory
   WHERE TYPE=&#39;Dir&#39;
  &amp;lt;/cfquery&amp;gt;
    
  &amp;lt;cfset TempFolderArrayDelete=ArrayDeleteAt(FolderArray,1)&amp;gt;
    
  &amp;lt;cfset FolderCounter=ArrayLen(FolderArray)&amp;gt;
  &amp;lt;cfset FolderCounter=FolderCounter+1&amp;gt;
   
  &amp;lt;cfloop query=&quot;ChildDirectoryList&quot;&amp;gt;
   &amp;lt;cfset FolderArray[FolderCounter][1]=DIRECTORY&amp;gt;
   &amp;lt;cfset FolderArray[FolderCounter][2]=NAME&amp;gt;  
   
   &amp;lt;cfset FolderPath=&quot;#DIRECTORY#\#NAME#\&quot;&amp;gt;
   &amp;lt;!---&amp;lt;cfdump var=&quot;#FolderPath#&quot;&amp;gt;&amp;lt;br/&amp;gt;---&amp;gt;
   &amp;lt;cfset TempFolderPathArray=ArrayAppend(FolderPathArray,FolderPath)&amp;gt;
   &amp;lt;cfset FolderCounter=FolderCounter+1&amp;gt;
  &amp;lt;/cfloop&amp;gt;
 
  &amp;lt;cfset FolderNumber=ArrayLen(FolderArray)&amp;gt;
  &amp;lt;cfif FolderNumber LT 1&amp;gt;
   &amp;lt;cfset FolderExploreStatus=1&amp;gt;
  &amp;lt;/cfif&amp;gt;
  
    &amp;lt;/cfloop&amp;gt;
   &amp;lt;/cfif&amp;gt;
   
   &amp;lt;!---Now we find final folder path array---&amp;gt;
   
   &amp;lt;cfset TotalFolder=ArrayLen(FolderPathArray)&amp;gt;
   
   &amp;lt;cfloop from=&quot;1&quot; to=&quot;#TotalFolder#&quot; index=&quot;index&quot;&amp;gt;
   
    &amp;lt;!---&amp;lt;cfoutput&amp;gt;#FolderPathArray[index]#&amp;lt;/cfoutput&amp;gt;&amp;lt;br/&amp;gt;---&amp;gt;
    &amp;lt;!---Root Directory&#39;s .cfm FileList---&amp;gt;
    &amp;lt;cfdirectory action=&quot;list&quot;
   filter=&quot;*.cfm&quot;
  directory=&quot;#FolderPathArray[index]#&quot;
  name=&quot;CFMFileList&quot;
  &amp;gt;
  
    &amp;lt;!---Root Directory&#39;s .cfml FileList---&amp;gt;
    &amp;lt;cfdirectory action=&quot;list&quot;
   filter=&quot;*.cfml&quot;
  directory=&quot;#FolderPathArray[index]#&quot;
  name=&quot;CFMLFileList&quot;
  &amp;gt;
  
    &amp;lt;!---Root Directory&#39;s .cfc FileList---&amp;gt;
    &amp;lt;cfdirectory action=&quot;list&quot;
   filter=&quot;*.cfc&quot;
  directory=&quot;#FolderPathArray[index]#&quot;
  name=&quot;CFCFileList&quot;
  &amp;gt;
  
    &amp;lt;!---Root Directory&#39;s .htm FileList---&amp;gt;
    &amp;lt;cfdirectory action=&quot;list&quot;
   filter=&quot;*.htm&quot;
  directory=&quot;#FolderPathArray[index]#&quot;
  name=&quot;HTMFileList&quot;
  &amp;gt;
  
    &amp;lt;!---Root Directory&#39;s .html FileList---&amp;gt;
    &amp;lt;cfdirectory action=&quot;list&quot;
   filter=&quot;*.html&quot;
  directory=&quot;#FolderPathArray[index]#&quot;
  name=&quot;HTMLFileList&quot;
  &amp;gt;
  
    &amp;lt;!---Root Directory&#39;s .css FileList---&amp;gt;
    &amp;lt;cfdirectory action=&quot;list&quot;
   filter=&quot;*.css&quot;
  directory=&quot;#FolderPathArray[index]#&quot;
  name=&quot;CSSFileList&quot;
  &amp;gt;
  
    &amp;lt;!---Root Directory&#39;s .js FileList---&amp;gt;   
    &amp;lt;cfdirectory action=&quot;list&quot;
   filter=&quot;*.js&quot;
  directory=&quot;#FolderPathArray[index]#&quot;
  name=&quot;JSFileList&quot;
  &amp;gt;
  
    &amp;lt;!---Root Directory&#39;s All FileList---&amp;gt;  
    &amp;lt;cfquery name=&quot;FileList&quot; dbtype=&quot;query&quot;&amp;gt;
  SELECT *
  FROM CFMFileList
  UNION
  
  SELECT *
  FROM CFMLFileList
  UNION
  
  SELECT *
  FROM CFCFileList
  UNION
  
  SELECT *
  FROM HTMFileList
  UNION
  
  SELECT *
  FROM HTMLFileList
  UNION
  
  SELECT *
  FROM CSSFileList
  UNION
  
  SELECT *
  FROM JSFileList
    &amp;lt;/cfquery&amp;gt;
  
    &amp;lt;cfset FileCounter=ArrayLen(FileArray)&amp;gt;
    &amp;lt;cfif FileCounter EQ 0&amp;gt;
  &amp;lt;cfset FileCounter=1&amp;gt;
    &amp;lt;/cfif&amp;gt;
    &amp;lt;cfloop query=&quot;FileList&quot;&amp;gt;
   &amp;lt;cfset FileArray[FileCounter][1]=NAME&amp;gt;
   &amp;lt;cfset FilePath=&quot;#DIRECTORY#\#NAME#&quot;&amp;gt;
   &amp;lt;cfset FileArray[FileCounter][2]=FilePath&amp;gt;
   
  &amp;lt;cfset FileCounter=FileCounter+1&amp;gt;
    &amp;lt;/cfloop&amp;gt;
   
   &amp;lt;/cfloop&amp;gt;
   
   &amp;lt;!---Now we find final file array---&amp;gt;
   &amp;lt;cfdump var=&quot;#FileArray#&quot;&amp;gt;
   
   &amp;lt;cfset TotalFile=ArrayLen(FileArray)&amp;gt;
   
   &amp;lt;cfif TotalFile GT 0&amp;gt;
    &amp;lt;cfdocument format=&quot;#arguments.OutputFileFormat#&quot;&amp;gt;
  &amp;lt;cfdocumentsection&amp;gt;
   &amp;lt;cfdocumentitem type=&quot;footer&quot;&amp;gt;
    &amp;lt;font size=&quot;-3&quot;&amp;gt;Page #cfdocument.currentpagenumber#&amp;lt;/font&amp;gt;
   &amp;lt;/cfdocumentitem&amp;gt;
     
   &amp;lt;cfloop from=&quot;1&quot; to=&quot;#TotalFile#&quot; index=&quot;position&quot;&amp;gt;
 
    &amp;lt;cfdocumentitem type=&quot;header&quot;&amp;gt;
     &amp;lt;cfoutput&amp;gt;
   &amp;lt;font size=&quot;-3&quot;&amp;gt;
    &amp;lt;i&amp;gt;
     Code Documentation
    &amp;lt;/i&amp;gt;
   &amp;lt;/font&amp;gt;
     &amp;lt;/cfoutput&amp;gt;
    &amp;lt;/cfdocumentitem&amp;gt;
 
    &amp;lt;cffile
     action=&quot;read&quot;
     file=&quot;#FileArray[position][2]#&quot;
     variable=&quot;FileCode&quot;
     &amp;gt;
    &amp;lt;cfoutput&amp;gt;
     &amp;lt;h3&amp;gt;
   &amp;lt;i&amp;gt;
    #FileArray[position][2]#
   &amp;lt;/i&amp;gt;
     &amp;lt;/h3&amp;gt;
     &amp;lt;br/&amp;gt;
 
     &amp;lt;h2&amp;gt;
   #FileArray[position][1]#
     &amp;lt;/h2&amp;gt;
    &amp;lt;/cfoutput&amp;gt;
    &amp;lt;br/&amp;gt;
    
    &amp;lt;cfoutput&amp;gt;
     #HTMLCodeFormat(wrap(FileCode,75))#
    &amp;lt;/cfoutput&amp;gt;
   &amp;lt;/cfloop&amp;gt;
    &amp;lt;/cfdocumentsection&amp;gt;
    &amp;lt;/cfdocument&amp;gt; 
   &amp;lt;/cfif&amp;gt;
 
   &amp;lt;cfreturn FolderPathArray&amp;gt;
  &amp;lt;/cffunction&amp;gt;
 &amp;lt;/cfcomponent&amp;gt;
   &lt;/pre&gt;
  &lt;/code&gt;
 &lt;/font&gt;
&lt;/div&gt;

&lt;span style=&quot;FONT-WEIGHT: bold;color:#FF57B2&quot; &gt;
codedocumentation.cfm
&lt;/span&gt;

&lt;div style=&quot;overflow-x:scroll; width:375; background-color:#E8E8E8&quot;&gt;
 &lt;font color=&quot;#646464&quot;&gt;
  &lt;code&gt;
   &lt;pre&gt;
 &amp;lt;cfset ApplicationRootpath=ExpandPath(&quot;.&quot;)&amp;gt;
 
 &amp;lt;cfif IsDefined(&quot;Form.GetMap&quot;)&amp;gt;
  &amp;lt;cfscript&amp;gt;
   ApplicationMapObject=CreateObject(&quot;Component&quot;,&quot;codedocumentation&quot;);
  &amp;lt;/cfscript&amp;gt;
  &amp;lt;cfset ApplicationMapObject.GetApplicationMap(Form.ApplicationRootpath,Form.FileFormat)&amp;gt;
 &amp;lt;/cfif&amp;gt;
 
 &amp;lt;div align=&quot;center&quot;&amp;gt;
  &amp;lt;cfform name=&quot;FileFormatForm&quot; action=&quot;#CGI.SCRIPT_NAME#&quot; method=&quot;post&quot; target=&quot;_blank&quot;&amp;gt;
   &amp;lt;cfselect name=&quot;FileFormat&quot; label=&quot;Output Format&quot;&amp;gt;
    &amp;lt;option value=&quot;pdf&quot;&amp;gt;PDF&amp;lt;/option&amp;gt;
    &amp;lt;option value=&quot;flashpaper&quot;&amp;gt;Flash Paper&amp;lt;/option&amp;gt;
   &amp;lt;/cfselect&amp;gt;
   &amp;lt;cfinput type=&quot;hidden&quot; name=&quot;ApplicationRootpath&quot; value=&quot;#ApplicationRootpath#&quot;&amp;gt;
   &amp;lt;cfinput type=&quot;submit&quot; name=&quot;GetMap&quot; value=&quot;Get Application Map&quot;&amp;gt;
  &amp;lt;/cfform&amp;gt;
 
 
 &amp;lt;/div&amp;gt;
   &lt;/pre&gt;
  &lt;/code&gt;
 &lt;/font&gt;
&lt;/div&gt;

&lt;pre&gt;
hei..
now run the codedocumentation.cfm file in your browser.
submit the form.
what you see...?
yes its object oriented web programming.
&lt;/pre&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/391076632778198778/posts/default/3556814630185809813'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/391076632778198778/posts/default/3556814630185809813'/><link rel='alternate' type='text/html' href='http://web-adobe.blogspot.com/2008/01/tutorial-application-code-documentation.html' title='Tutorial :  Application code documentation'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-391076632778198778.post-1939284003866926325</id><published>2008-01-24T02:28:00.000-08:00</published><updated>2008-11-24T04:23:49.007-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tutorial : cfsavecontent"/><title type='text'>Tutorial : cfsavecontent</title><content type='html'>&lt;pre&gt;Copy the below code and paste your editor.Before it you
need two table one tblCountry  with CountryID,CountryName
Column And another tblCounty with CountyID,CountryID,
CountyName Column.Edit code if needed.

&amp;lt;cfquery name=&quot;qCountry&quot; datasource=&quot;#DataSourceName#&quot;&amp;gt;
SELECT * FROM tblCountry
&amp;lt;/cfquery&amp;gt;


&amp;lt;cfquery name=&quot;qCounty&quot; datasource=&quot;#DataSourceName#&quot;&amp;gt;
SELECT     CountyID, CountryID,CountyName
FROM         tblCounty
&amp;lt;/cfquery&amp;gt;


&amp;lt;cfsavecontent variable=&quot;CountyList&quot;&amp;gt;

var CountyName = [];

var SelectedCountry=Country.selectedItem.data;


&amp;lt;cfoutput query=&quot;qCounty&quot;&amp;gt;

var CountryID=#CountryID#;

if (CountryID == SelectedCountry)

{

var AddCounty = {label:&#39;#CountyName#&#39;, data:#CountyID#};

CountyName.push(AddCounty);

}

&amp;lt;/cfoutput&amp;gt;



County.dataProvider = CountyName;

&amp;lt;/cfsavecontent&amp;gt;


&amp;lt;div align=&quot;center&quot;&amp;gt;
&amp;lt;cfform format=&quot;flash&quot; width=&quot;300&quot; height=&quot;200&quot;&amp;gt;

&amp;lt;cfformgroup type=&quot;panel&quot; label=&quot;Select Country and County&quot;&amp;gt;

&amp;lt;cfselect label=&quot;Country&quot; name=&quot;Country&quot; query=&quot;qCountry&quot; value=&quot;CountryID&quot; display=&quot;CountryName&quot; required=&quot;yes&quot; onchange=&quot;#CountyList#&quot;&amp;gt;

&amp;lt;/cfselect&gt;

&amp;lt;cfselect name=&quot;County&quot; label=&quot;County&quot;&amp;gt;

Select

&amp;lt;/cfselect&amp;gt;

&amp;lt;/cfformgroup&amp;gt;

&amp;lt;/cfform&amp;gt;
&amp;lt;/div&amp;gt;

&lt;/pre&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/391076632778198778/posts/default/1939284003866926325'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/391076632778198778/posts/default/1939284003866926325'/><link rel='alternate' type='text/html' href='http://web-adobe.blogspot.com/2008/01/tutorial-cfsavecontent.html' title='Tutorial : cfsavecontent'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author></entry></feed>