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
Business Cards: Ideas and Inspiration, Part II
Today we continue looking at business cards that stand out, and here’s hoping you get some inspiration and ideas! After all, you only get one first impression, so your business card should be something that showcases the best of your design abilities. On Wednesday we looked at the use of interesting shapes, 3D business cards, [...]
![]() |
![]() |
|
![]() |
![]() |
|
Making the Move from Freelance Work to Full-Time Employment
If you are like me, after graduating from a graphic design school, your goal was to make it as a freelance web designer. The lure of flexible hours, working from home and the freedom to manage your own time was too much to resist. At some point, I decided it may be ?easier? to work [...]
Tips for Asking for a Raise
At some point in our careers, there is a time when we open our paychecks and breathe a sigh of disappointment. After years of studying at a graphic design school and countless hours spent devoted to learning from colleagues and researching new design techniques, the numbers on our pay stub just don?t seem to measure [...]
Stock vs. Original Digital Photography
A picture is worth a thousand words. Graphic design schools teach us that photos on web sites have the potential to capture our attention, motivate us to read more or even propel us to navigate to another web site entirely. They inflict emotion and can establish a connection between site visitors and the goods or [...]
3 Tips to Manage Content Updates
While walking through the pharmacy I passed the aisle filled with red heart-shaped boxes filled with chocolates and remembered Valentine?s Day is quickly approaching. Even though I was surrounded by so many representations of love, it reminded me of one thing that I actually despise ? web content updates! Graphic design schools teach many, many [...]
Should You Drop the Drop-Down Menus?
I was recently on a home improvement web site searching for ideas for renovating my bathroom. After a few minutes on the site I realized that I was not going to find what I was looking for ? it certainly could have been there, but I just could not find it. Menu after menu had me [...]
Sharpen Your Skills and Gain an Edge at 2011 Web Design Conferences
Graphic design schools prepare us well for our immediate future, but it takes effort to stay on top of the ever-changing field of web design. Following are a few of the upcoming conferences and trade shows meant to help you stay a step ahead of the competition.
Interaction Eleven In its fourth year, Interaction Eleven is [...]
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.