
tutorial389.easycfm.com
EasyCFM.COM - View TutorialEasyCFM.COM - ColdFusion Tutorial - Coldfusion Tutorials - ColdFusion Resources - Learn ColdFusion the easy way with our 420+ free coldfusion tutorials!
http://tutorial389.easycfm.com/
EasyCFM.COM - ColdFusion Tutorial - Coldfusion Tutorials - ColdFusion Resources - Learn ColdFusion the easy way with our 420+ free coldfusion tutorials!
http://tutorial389.easycfm.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Monday
LOAD TIME
3.9 seconds
PAGES IN
THIS WEBSITE
1
SSL
EXTERNAL LINKS
0
SITE IP
162.253.124.253
LOAD TIME
3.94 sec
SCORE
6.2
EasyCFM.COM - View Tutorial | tutorial389.easycfm.com Reviews
https://tutorial389.easycfm.com
EasyCFM.COM - ColdFusion Tutorial - Coldfusion Tutorials - ColdFusion Resources - Learn ColdFusion the easy way with our 420+ free coldfusion tutorials!
Donate Today - Make EasyCFM Better!
http://tutorial389.easycfm.com/donate.html
TOTAL PAGES IN THIS WEBSITE
1
tutorial 382
Senin, 25 April 2011. Kirimkan Ini lewat Email. Senin, 05 Juli 2010. Kumpulan tips and trik. 1 Untuk mempercepat browsing :. 1 Ctrl Enter, ini untuk membuka domain yang menggunakan .com. caranya adalah ketikkan nama domain kemudian klik ctrl enter. contohnya, anda ingin membuka “www.yahoo.com” jadi ketiklah “yahoo” kemudian klik ctrl enter. 2 Tweeking Firefox :. 1 Ketik “about:config” di firefox anda kemudian enter. 2 Maka akan keluar sebuah settingan untuk tweaking firefox. Untuk pengguna DSL :. 3 Set &...
EasyCFM.COM - View Tutorial
Generate a unique number from current date and time. Generate a 14-digits unique number from the current date/time. This function generates a 14-digits unique number that you may need when you assign unique IDs/numbers for database records. Hint="This function generates a 14-digit unique number from the current date and time". Get the year, month, day, hour, minute, and second from the current date/time and store them in variables. Cfif len(vMonth) EQ 0. Cfelseif len(vMonth) EQ 1. Cfif len(vDay) EQ 0.
EasyCFM.COM - View Tutorial
Ultra easy calender picker. ICalender = 0;. SRes=sRes and function cl DaysInMonth(iYear){return new Array(',31, ( iYear % 4 = 0 & iYear % 100! 0) iYear % 400 = 0? 29 : 28), 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);}. SRes=sRes and var cl month name = new Array (','January','February','March','April','May','June','July','August','September','October','November','December');. SRes=sRes and function CreateCalender(o){. SRes=sRes and var cl selD = document.createElement('select');. SRes=sRes & if( cl in.l...
EasyCFM.COM - View Tutorial
Using Arrays for Your Sites Security. Who every thought about minimizing the size of your database? Especially for the security section. I had a project come up where the company said, We need a security system where each user can access certain controls. Some of the controls on a page we want disabled for some users. Most sites I have worked on has had controls on pages, so if their secrity clearance wasnt high enough to access the page, then it denied them. Lets create a simple Application.cfm File.
EasyCFM.COM - View Tutorial
Fusebox 4.1 For Beginners Part 1. Fusebox 4.1 For Beginners Part 1. Circuit.xml.cfm and Fusebox.xml. To follow this tutorial please go to http:/ www.fusebox.org and download your copy of fusebox 4.1 and unzip it to your wwwroot folder. Once you have that done we can begin. Open up your favorite code editor (I am using dreamweaver but any will do.) and create a file called circuit.xml.cfm. Save it to the same folder as your index.cfm. You will see 14 of them. Now if you are reading through them your h...
EasyCFM.COM - View Tutorial
Fusebox 4.1 For Beginners Part 2. Fusebox 4.1 For Beginners Part 2. Now that you have a circuit and an action for that circuit you will want to create the page that will be that action. If you just said huh? Don't worry it will become clear in a moment. Open up your favorite editor and create a page called dsp welcome.cfm. In that page I would like you to type the phrase Hello, I am an action called welcome. Save it to the same folder as your index.cfm. That is our default fuseaction,. Is showing. Bu...
EasyCFM.COM - View Tutorial
Fusebox 4.1 For Beginners Part 3. Fusebox 4.1 For Beginners Part 3. Ok so far to recap we have found out what fusebox is, what files we needed to create to get it to work, plus what to put into those files, and How to properly use fuseactions to call a page. So with this freshly in mind (I hope) you are ready to get to the juicy stuff for Fusebox 4.1. For our fusebox application. In the folder you extracted fusebox into you will see a sub folder called Plugins. With the power to run script before or afte...
EasyCFM.COM - View Tutorial
Fusebox 4.1 For Beginners Part 4. Fusebox 4.1 For Beginners Part 4. Before we get started into the nitty gritty of things let me explain something about how files are named in fusebox. When fusebox was invented the creators decided that to make their application as neat and as efficient for coders as possible they came up with a system of how their files were to be named. It makes allot of sense when you sit down and think about it. This is how it goes:. Pages that deal with displaying of information.
EasyCFM.COM - View Tutorial
Switching in between languages. I use this script to switch between 2 languages (French and English). See this example at http:/ www.utopicminds.com. Make sure you use the same directory structure for both language. French : /fr/index.cfm. So on your page all you need to do is make a link using this code. I put this in my header file ( cfinclude template=header.cfm ). Link to the english page:. ListLast(CGI.SCRIPT NAME, "/")#. Link to the french page:. ListLast(CGI.SCRIPT NAME, "/")#. July 07, 2005.
EasyCFM.COM - View Tutorial
Replacing Ugly Text With Nice Text Graphics. Have you ever though, Man oh man, I wish I could make my text look a lot better. If so, then this tutorial is for you! How would you like all your text to come up completely different? Actually come up as predesigned graphics instead of the text you entered. This is how. Below type any letters you see above and click submit. The CF code will replace the letters with letter graphics. We are defining #FORM.title# - -. We are grabbing each letter one by one for p...
EasyCFM.COM - View Tutorial
Re-usable form submission cleaner. Re-usable form submission cleaner. On my hands is a web application running against some 30 tables, documenting many new business processes. On the add/edit pages ( some 30 or so across the site ) I had a lot of server side routines running to ensure the validity of the incoming data. Sample: (note in examples - CapFirst,NumbersOnly are UDF's from CFLib.org. To make demo work, use a cfinlude to instantiate them, or in some way create these as functions. Cfinclude templa...
SOCIAL ENGAGEMENT