
coldfusioncookbook.com
ColdFusion CookbookColdFusion Cookbook is a collection of problems and solutions for typical problems you may run across in ColdFusion development.
http://www.coldfusioncookbook.com/
ColdFusion Cookbook is a collection of problems and solutions for typical problems you may run across in ColdFusion development.
http://www.coldfusioncookbook.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Monday
LOAD TIME
0.7 seconds
16x16
32x32
64x64
128x128
Raymond Camden
Raymond Camden
403 Rob●●●●●●● Circle
Laf●●●tte , Louisiana, 70508
United States
View this contact
Raymond Camden
403 Rob●●●●●●● Circle
Laf●●●tte , Louisiana, 70508
United States
View this contact
Raymond Camden
403 Rob●●●●●●● Circle
Laf●●●tte , Louisiana, 70508
United States
View this contact
19
YEARS
3
MONTHS
26
DAYS
GODADDY.COM, LLC
WHOIS : whois.godaddy.com
REFERRED : http://registrar.godaddy.com
PAGES IN
THIS WEBSITE
13
SSL
EXTERNAL LINKS
34
SITE IP
54.231.184.175
LOAD TIME
0.74 sec
SCORE
6.2
ColdFusion Cookbook | coldfusioncookbook.com Reviews
https://coldfusioncookbook.com
ColdFusion Cookbook is a collection of problems and solutions for typical problems you may run across in ColdFusion development.
How do I create a query by hand?
http://www.coldfusioncookbook.com/entries/How-do-I-create-a-query-by-hand.html
How do I create a query by hand? Here is a simple of a query with four columns:. Cfset newQuery = queryNew(Column 1, Column 2, Column 3, Column 4,Integer, VarChar, Decimal, Date) cfloop index=i from=1 to=10 cfset queryAddRow(newQuery) cfset querySetCell(newQuery, Column 1, i) cfset querySetCell(newQuery, Column 2, Value #i#) cfset querySetCell(newQuery, Column 3, #i#*10000.05555555) cfset querySetCell(newQuery, Column 4, #dateadd(d, i, now() #) /cfloop cfdump var=#newQuery#. Comments powered by Disqus.
ColdFusion Cookbook - Categories
http://www.coldfusioncookbook.com/categories.html
The following page lists the categories of questions here at the ColdFusion Cookbook. Use this to begin your search. This covers anything related to applications, including session and client tracking. This category covers a full range of caching options and tricks that are available to ColdFusion. This category covers ColdFusion Components (CFCs). Anything related to databases and SQL. Issues that relate to the display or layout generated from ColdFusion code. File and Directory Access. This category co...
How do I get information about a file?
http://www.coldfusioncookbook.com/entries/How-do-I-get-information-about-a-file.html
How do I get information about a file? Use the getFileInfo() function. GetFileInfo returns a structure with the following information: filename, path, parent directory, type, size, when the file was most recently modified, whether the file has read permission, write permission, and is hidden. This question was written by Jeremy Petersen. It was last updated on July 18, 2008. File and Directory Access. Comments powered by Disqus. Created by Raymond Camden. Design by Andreas Viklund.
How can I delete email messages from a mail server?
http://www.coldfusioncookbook.com/entries/How-can-I-delete-email-messages-from-a-mail-server.html
How can I delete email messages from a mail server? Use cfpop with the action attribute set to 'delete' and the messagenumber attribute or uuid attribute set to the message you wish to delete. Cfpop action=delete server=SERVER NAME username=USERNAME password=PASSWORD messagenumber=MESSAGENUMBER. This entry was based on a suggestion by Stefan Leroux. This question was written by Jeremy Petersen. It was last updated on July 17, 2008. Comments powered by Disqus. Created by Raymond Camden.
How do I parse RSS feeds?
http://www.coldfusioncookbook.com/entries/How-do-I-parse-RSS-feeds.html
How do I parse RSS feeds? As a simple example, consider this code:. Cffeed source=http:/ www.coldfusionjedi.com/rss.cfm query=content cfdump var=#content#. The source used in the cfeed tag simply points to the RSS file for the site. The query attribute tells ColdFusion to parse the RSS data into a query. You can also use the name attribute to create a structure of data. Cffeed source=http:/ www.coldfusionjedi.com/rss.cfm query=content properties=p. This question was written by Raymond Camden.
TOTAL PAGES IN THIS WEBSITE
13
Eichman's CF Blog: December 2009
http://eichmancfblog.blogspot.com/2009_12_01_archive.html
Wednesday, December 2, 2009. JavaScript changed my url variables. I recently debugged a piece of old code that was doing some weirdness. In the code a JavaScript function was run after a combo box was changed. The function reloaded the same page with a few url variables. One of the url variables was changing when it reloaded. I found out JavaScript was calculating the numerical value and returning a different number, ( example: 027 became 17 ). The original code looked something like this:.
Eichman's CF Blog: Test for radio button value in JavaScript
http://eichmancfblog.blogspot.com/2008/12/test-for-radio-button-value-in.html
Thursday, December 18, 2008. Test for radio button value in JavaScript. If you would like to test which radio button is selected in JavaScript you must remember that each button always has a value but only one will have a checked value in the same button group. So to find the selected one you must loop through the group and test the checked value ( see function getSelectedRadioButton() ). For ( var i = 0; i. Return buttonGroup[i].value;. Var j = getSelectedRadioButton(form.myButtonGroupName);.
Eichman's CF Blog: Loop through form fields in Javascript
http://eichmancfblog.blogspot.com/2009/06/loop-through-form-fields-in-javascript.html
Wednesday, June 24, 2009. Loop through form fields in Javascript. The following code will loop through all form fields and look for ones named "chkStores" and checks or unchecks them (assuming they are check boxes). There is a hidden form field named "StoreCheck" that tells whether the current state is checked or unchecked. The action becomes the reverse of the "StoreCheck" value. Var chkStatus = eval("document.forms[0].StoreCheck.value");. Var form = document.forms[0];. Var theName = "chkStores";.
Eichman's CF Blog: December 2008
http://eichmancfblog.blogspot.com/2008_12_01_archive.html
Thursday, December 18, 2008. Test for radio button value in JavaScript. If you would like to test which radio button is selected in JavaScript you must remember that each button always has a value but only one will have a checked value in the same button group. So to find the selected one you must loop through the group and test the checked value ( see function getSelectedRadioButton() ). For ( var i = 0; i. Return buttonGroup[i].value;. Var j = getSelectedRadioButton(form.myButtonGroupName);.
Eichman's CF Blog: MXUnit
http://eichmancfblog.blogspot.com/2008/09/mxunit.html
Thursday, September 11, 2008. And the mxunit eclipse plugins on my local development environment. Tried it out on a couple of CFCs I had built for a project at work. I went through 3 round of tests on one of the CFCs and "walla"! I found an error. I am sold on testing and MXUnit now. It is really cool to be able to just run these test, each and every time I modify the CFC. Have you tried dumping that pos from altiris? September 10, 2009 at 6:01 AM. Subscribe to: Post Comments (Atom).
Eichman's CF Blog: July 2008
http://eichmancfblog.blogspot.com/2008_07_01_archive.html
Thursday, July 17, 2008. Can't say how much I like the TODO comment feature in CFEclipse. See this article for more info. All you have to do is add "TODO" in a comment and it will appear in your tasks list. Inside scripts . /. TODO: Do this later. No excuse for forgetting stuff now . unless you forget to use TODO! Links to this post. Sunday, July 13, 2008. This has been confusing for some developers. Bravo Sean! Links to this post. Subscribe to: Posts (Atom). View my complete profile.
Eichman's CF Blog: Go back in browser using Javascript.
http://eichmancfblog.blogspot.com/2009/06/go-back-in-browser-using-javascript.html
Wednesday, June 24, 2009. Go back in browser using Javascript. Input type="Button" name="btnCancel" value="Cancel" onclick="history.go(-1);". Subscribe to: Post Comments (Atom). View my complete profile. Eichman's other Blog (Golf, Wine). How to display HTML code in a browser. Go back in browser using Javascript. Loop through form fields in Javascript.
Eichman's CF Blog: CGI Variables
http://eichmancfblog.blogspot.com/2009/03/cgi-variables.html
Friday, March 6, 2009. We recently migrated an old app from an IIS web server to an Apache web server. During this migration we found out the the code had referenced CGI.path name which did not work in Apache. The CGI variable was blank. We changed the CGI varible to be script name and all worked fine. I also found a couple of good blog posts about CGI variables and some gotcha's:. CGIhot n sexy Does Not Throw A ColdFusion Error. Apache 404 / CGI Weirdness. Subscribe to: Post Comments (Atom).
Eichman's CF Blog: June 2009
http://eichmancfblog.blogspot.com/2009_06_01_archive.html
Wednesday, June 24, 2009. How to display HTML code in a browser. How can I show HTML code without the browser rendering it? Replace '&' with '. Replace ' ' with '. See the following link for more detailed info:. Http:/ allmyfaqs.net/faq.pl? Links to this post. Go back in browser using Javascript. Input type="Button" name="btnCancel" value="Cancel" onclick="history.go(-1);". Links to this post. Loop through form fields in Javascript. Var chkStatus = eval("document.forms[0].StoreCheck.value");. Input type=...
Eichman's CF Blog: How to display HTML code in a browser.
http://eichmancfblog.blogspot.com/2009/06/how-to-display-html-code-in-browser.html
Wednesday, June 24, 2009. How to display HTML code in a browser. How can I show HTML code without the browser rendering it? Replace '&' with '. Replace ' ' with '. See the following link for more detailed info:. Http:/ allmyfaqs.net/faq.pl? Subscribe to: Post Comments (Atom). View my complete profile. Eichman's other Blog (Golf, Wine). How to display HTML code in a browser. Go back in browser using Javascript. Loop through form fields in Javascript.
TOTAL LINKS TO THIS WEBSITE
34
Cold Fusion Community – supporting low energy nuclear reaction research
Supporting low energy nuclear reaction research. A little knowledge is a dangerous thing. I had started to work with RvD: Study of 214:Rossi Motion for Summary Judgment. And then I realized that this document heavily depends on RvD: Study of 207:IH Statement of material fact supporting MSJ. So I decided to compile and link this first. You can see more or less what it will look like, I just need to complete it. Actually, no. Rossi does not own Leonardo Florida. His reason is irrelevant. This was terminall...
ColdFusion Community - The online ColdFusion / CFML community website
The online ColdFusion / CFML community website. The online ColdFusion / CFML community website. Getting CFML developers together. Episode 1: Setting up ColdFusion on Wheels. Added by Nick Tong. What's Next in ColdFusion Adobe TV. Added by Nick Tong. The power of the search box. Try searching to quickly find content. The search box is in the top right of your screen. You can get the latest website activity via RSS. Click here. News from Coldfusion Bloggers. Importing JSON into a Meteor MongoDB. I have upl...
coldfusionconference.com - Registered at Namecheap.com
Welcome to namecheap.com. This domain was recently registered at namecheap.com. The domain owner may currently be creating a great site for this domain. Please check back later! Products and Services from Namecheap. Purchase domain names from just $3.98 per year. You can also transfer domain from another registrar to us for the same competitive price. WhoisGuard Privacy Protection Service. Low Cost 256bit SSL Certificates.
ColdFusionConnection
ColdFusion Development - ColdFusion Programming - ColdFusion Hosting
ColdFusion Software Development Company. We would love to help. Give us a call:. Get a free project estimate:. Database and Archive Works. Network Performance and Security. ColdFusion Programming and Development. ColdFusion Performance, Optimization, and Maintenance. ColdFusion Capabilities and Flexibility. Backed and developed by Adobe, ColdFusion blends well with and supports a variety of platforms including MS Windows, Unix, Linux, and anything that runs Java. It is one of the most respectable cho...
ColdFusion Cookbook
The purpose of this site is simple - help people solve problems in the quickest and most efficient manner possible. Welcome to the ColdFusion Cookbook. I'd like to welcome you to the launch of the ColdFusion Cookbook. The purpose of this site is simple - help people solve problems. Many of the problems that developers encounter are problems that we have all encountered. This site was created in January of 2006. It was the creation of Raymond Camden. There are currently 152. How do I parse RSS feeds?
CFCB Article Directory
Just another WordPress site. How to Get Payday Loans Online. Posted in no credit check. Those who cannot borrow traditional loans need financial services of another kind and reputable companies understand this. Still many people look for a payday loans without checking the background of payday loan providers. It is important to have a thorough look at the company you are going to do business with. All the terms and conditions are explained in plain English. Take No Credit Check Personal Loans. If you wan...
Cold Fusion Micro Creamery
Cold Fusion Micro Creamery. Powered by InstantPage® from GoDaddy.com. Want one?
www.coldfusioncrm.com
This Web page parked FREE courtesy of Dynamic Works. Search for domains similar to. Is this your domain? Let's turn it into a website! Would you like to buy this. Find Your Own Domain Name. See our full line of products. Easily Build Your Professional Website. As low as $4.99/mo. Call us any time day or night .
My WordPress Website | Just another WordPress site
This domain is currently not approved for CashParking.
M1 Motoring | Partsdropship - Formally Cold Fusion Customs