Print Design Templates Take a look at these creative Graphic Design templates for brochures, flyers, newsletters, stationery, postcards, ads, menus and posters for a variety of businesses.
Invoicing 4 Freelancers A complete, secure, online billing application that maintains hourly service billing, flat fee billing and recurring charges. Integration with Authorize.Net and other leading payment gateways provides hands-free recurring billing with a sophisticated CRM system.
Free Design Magazines Browse through our extensive list of free Graphic Design, Web Design, Business, Computer, and Computer Graphics magazines, white papers, downloads and podcasts to find the titles that best match your skills and interests; topics include management, marketing, operations, sales, and technology. Simply complete the application form and submit it. All are absolutely free to freelance professionals who qualify.
Suggested Links Photoshop Tutorials
Logo Designer's Logos
Web Design Tools List
Layouts & Templates Directory
Web Design & Graphic Design Blog
Photoshop, Flash, 3D Studio Max Tutorials
Web Designers & Developers
Crafts for Kids
Photoshop Tutorial Man
Tutorial Guide -- Free Webmaster Tutorials
Design Contests
How to Draw
Work From Home Job Search
OTHER SITES WE OWN
AllFreelance
Graphic Design Resources Directory
Graphics Tutorials Directory
Social Networking Articles
Design Sites Up
All Freelance Work & Portfolios
Graphic Design Community
Education & Learning Directory
![]() |
home > Web Design Tutorials > Programming Tutorials > Coldfusion Tutrials > Coldfusion Forms & Form Processing Tutorials
Cool Forms with ColdFusion - HTML forms were created for a simple purpose: user input. Look back through the HTML specs that have come and gone and see how forms are described. You will find language like "fill out forms," "user input forms," and so forth. Back in 1994, in the simpler times of yore, that was really the only purpose forms had to serve
ColdFusion MX: Forms
we’d like to build a form application that will collect contact information from a user that is interested travelling to some exotic location. We’d like to store that data in a database and use things like server-side validation on the form data the user supplies
About Flash forms - ColdFusion MX can deliver forms to the client in Macromedia Flash (SWF) file format. ColdFusion automatically generates the Flash binary from your CFML code and displays it on the client. Flash forms have the following advantages over HTML forms:
ColdFusion forms and Xforms - CColdFusion MX forms tags include attributes that provide information that does not correspond directly to the XForms model, such as appearance information, validation rules, and standard HTML attributes. ColdFusion skinnable forms retain this information in XForms extensions so that an XSL transformation can use the values to determine appearance or do other processing
![]() |
![]() |
![]() |
||
![]() |
![]() |
![]() |
||
Conditional Processing in ColdFusion Development Lessons
Conditional processing is code that reacts to specified conditions and behaves differently based on those conditions. When application behavior depends on data that is not known at the time of development, such as user data or query information, conditional processing is an important tool. Conditional processing is essential in the development of ColdFusion applications. Learn what tools are available for this, and which are best under specific conditions.
ColdFusion MX: Forms- In this tutorial we’d like to build a form application that will collect contact information from a user that is interested travelling to some exotic location. We’d like to store that data in a database and use things like server-side validation on the form data the user supplies
Rich Forms- Using familiar CFML tags, easily create complex, multistep forms with tabbed or accordion interfaces. Applications can use Macromedia Flash controls that are unavailable in regular HTML, such as data grids, tree controls, and calendar date pickers. Best of all, forms will look good and be intuitive for end users without requiring developers to spend extra effort coding presentation-tier information.
Creating Better Forms Faster with ColdFusion MX 7- ColdFusion MX 7 allows developers to create accessible, high-quality forms in minutes using the new Rich Flash and XML forms capabilities.
Daryl's Colfusion Primer - Forms Processing - Learn the basics of creating forms within Coldfusion, such as checkboxes, text inputs, multiple values, databases, radio buttons, and selected lists.
Remoting for ColdFusion Flash Forms- We had given for granted that it was not possible to use Flash Remoting with ColdFusion Flash Forms because of the ActionScript language restrictions that they have. All workarounds used external .swf loaded into the form, so we never used them and we never investigated any further. Otherwise, we would’ve found that there is a simple way to get remoting in ColdFusion Flash Forms sooner. In any case, here it is, better late than never. Note that this does not use external swf and therefore it is not a hack.
ColdFusion Forma Tutorials - Form Page - This tutorial will show you how to create a ColdFusion form that will include client-side and server-side validation of the form.
ColdFusion Tutorials for DataGrid and Binding for Interactive Forms - Use the new Rich Flash Forms feature to create interactive form controls that are not available in ordinary HTML.
Forms Faster with ColdFusion MX 7- Mike Nimer, Sr. Engineer on the ColdFusion engineering team, gives his report on the changes in CFFORM in ColdFusion MX 7. How has the tag been updated, and what did the Macromedia team take into consideration when revamping the tag? This account is a fascinating look both at CFFORM and at the process of software development at Macromedia
File Upload with ColdFusion Flash Forms
As you may expect, you need the Flash Player 8 to run this example. In the zip file you will find a custom tag, an example, and a swf file. We aren’t allowed to post the .fla, so don’t ask for it ;)
ColdFusion Form Validation vs Python FormEncode Tutorials
I've been doing alot of work with validation in python recently, and wanted to point out a few nice things about validation in a python web app using FormEncode vs the client side validation in ColdFusion.
Handling PDF forms with ColdFusion- All Internal Revenue Service forms are now available this way. However, it doesn't take long to realize that if the data on mailed-in PDF documents needs to be input into a database, or if the filled-in form needs to be kept as an electronic image, it's more efficient to have the users do the data entry in the...
How Do I Update One-To-Many-Record Forms in Coldfusion Form Processing? Lessons - We'll concentrate on the fundamentals of the problem at hand. Stuff like validating form inputs, testing referers and whatnot are beyond the scope of this tutorial, although we do make use of cfqueryparam, which should be a mandatory part of all ColdFusion database operations.
Form processing
Every form that you create in ColdFusion consist of two parts: the form page and the action page.These two pages work together to process user input. The form page contains the user interface elements, such as input fields, and radio buttons. The action page handles the processing of the form page data
Coldfusion Form Processing - Rich ColdFusion Forms Lesson - Create complex, multistep forms using familiar CFML tags to describe form layout and design.
Coldfusion Form Processing Tutorial: Post and Get What Are They? Lesson - We do not want to busy ourselves with that at the moment though, we are going to look fairly and squarely at the methods that are used for passing data from the form page to the response page.
Processing form data- Virtually all web applications that gather and write information to a database use a form to accomplish that task. Forms let you collect information from a user (using an order form, registration form, and so on) and write that information to a database. Like HTML, there are two independent steps for creating a form in ColdFusion
Processing Acrobat 7 form in ColdFusion
Firstly, the field formatting when posting from PDF is bracketed which is a problem because CF expects that the data is an array and will throw java errors. This will happen even if you try to just read the variable. The solution I have come up with is to strip out all the garbage, ie; Brackets and page names to get just the field names and values
Testing Coldfusion Forms Tutorial
In this article, you'll learn how to create a form tester page that you can use to view the results of forms submitted via GET and POST. These can be regular HTML forms, or forms created using the cfform tag. You can even test Flash forms in ColdFusion MX 7.
Using Forms in ColdFusion to Specify the Data to Retrieve - You can use forms in ColdFusion applications to allow users to specify what data they want to retrieve in a query. When you submit a form, you pass the variables to an associated page, called an action page, where some type of processing takes place.
Updating Data with Forms with Coldfusion - Here are a few tips for using Coldfusion forms.
RECENT ARTICLES from Graphic Design BloG
Starting a Graphic Design Business: Part II
You’re in the Money
In our last post we identified some of the advisors you’ll need on your team as you start a graphic design business. Lucky for you, the logistical fun doesn’t end there. Armed with your graphic design education and ready to take on your first project, you’ll first need a pricing structure. Design [...]
![]() |
![]() |
|
![]() |
![]() |
|
Got (Photoshop) Gadgets? Part II
More Cool Gadgets
This week wraps up our series on Photoshop gadgets for websites. These gadgets are quite generic and can be used in many different sorts of applications. The accompanying tutorials are straightforward and detailed. The more difficult ones will take more time to build, but the results will be worth it. Enjoy!
Digital MP3 Player
This [...]
Got (Photoshop) Gadgets? Part I
Spruce Up Your Website
Are you tired of the same old button gadgets everyone else uses on their websites? If you are, here are a few gadgets you can create in Photoshop that may bring some bling to your webpages. A big thanks to Hongkiat for assembling most of these tutorials.
Flash Drive Gadget
For all those tech [...]
Things You Won?t Hear About Successful Web Designers - Part II
Got Customers?
Take the case of “Jesse,” a brilliant web designer. It’s obvious that he has serious skills in design and can run circles around other web designers when it comes to talent. But oddly enough, he doesn’t have many customers.
On more than one occasion he tells his customers that he is “overworked” and complains about [...]
Things You Won?t Hear About Successful Web Designers - Part I
What You Need
If you ask most employed web designers what factors were most important in their development as a web designer you’ll probably hear “experience” and “school” at the top of their lists.
Outside of coding skills there are other elements that make a web designer successful. The following traits are things that you won’t usually [...]
How to Select a Good Web Design College
Some Guidelines and Tips
If you are seriously considering going to college for your graphic design education or web design degree you already know that there are no shortages of available colleges, universities, and online education centers that constantly vie for your attention. But how can you distinguish between the good schools and the bad ones? [...]
Twas the Night Before Debugging
Happy Holidays!
We just wanted to say thanks for visiting this site and to wish everyone a restful and happy New Year. We’ve done a little parody of a famous poem for all you web designers out there. We hope you like it.
Twas the Night Before Debugging
by Frank Ling aka “Admin”
Twas the night before debugging when [...]
All Web Design Resources is a Directory & Blog Full of Tools for Web Site Designers
All Web Design Resources Portal is a Web Site Design education directory with resources & articles for Graphic Designers, Web Developers, & Web Designers including a Web Design forum, blog, graphics software tips, web development resources, web programming tools, web design jobs, advice for new web designers about web design schools and education as
well as tips for freelance web design business owners, and much more.