The Development Process; Working With Coldfusion Application Pages; About Applicaton Pages; Creating Application Pages - MACROMEDIA COLDFUSION 5-DEVELOPING Develop Manual

Table of Contents

Advertisement

10

The Development Process

Whether you are creating a static HTML page or a ColdFusion application page, you
follow the same iterative process:
1
2
3
4
5
6

Working with ColdFusion Application Pages

While you can code your application pages using NotePad or any HTML editor, this
book uses ColdFusion Studio because it provides many features that make
ColdFusion development easier. You should install ColdFusion Studio if you have
not done so already.

About applicaton pages

From a coding perspective, the major difference between a static HTML page and a
ColdFusion application page is that ColdFusion pages contain ColdFusion Markup
Language (CFML). CFML is a markup language that is very similar in syntax to
HTML, so Web developers find it intuitive. Unlike HTML, which defines how things
are displayed and formatted on the client, CFML identifies specific operations that
are performed by ColdFusion Server.

Creating application pages

The following procedure creates a simple ColdFusion Application page, which you
use for other examples in this chapter.
To create a ColdFusion application page:
1
2
3
Write some code.
Save the code to a document or page.
View the page in a browser.
Modify the page.
Save the page again.
View it in a browser.
Open ColdFusion Studio.
Select File > New and select the Default Template for your new page.
Edit the file so that it appears as follows:
<html>
<head>
<title>Call Department</title>
</head>
<body>
<strong>Call Department</strong><br>
Chapter 2 Writing Your First ColdFusion Application

Advertisement

Table of Contents
loading

This manual is also suitable for:

Coldfusion 5

Table of Contents