Dreamweaver CS4 Resources
|
Build web pages that use CFCs
One way to use a component function in
your web pages is to write code in the page that invokes the function
when the page is requested. You can use Dreamweaver to
help you write this code. Note: For other ways to use components,
see the ColdFusion documentation from within Dreamweaver (Help > Using ColdFusion).
- In Dreamweaver, open the
ColdFusion page that will use the component function.
- Switch to Code view (View > Code).
- Open the Components panel (Window > Components),
and select CF Components from the panel’s pop‑up menu.
- Find the component you want and insert it using one of
the following techniques:
Drag a function from the tree view to the
page. Code is inserted in the page to invoke the function.
Select the function in the panel and click the Insert
button on the panel toolbar (the second button on the right). Dreamweaver
inserts the code in the page at the insertion point.
- If you insert a function that has arguments, complete
the argument code by hand.
For more information, see the ColdFusion documentation
from within Dreamweaver (Help >
Using ColdFusion).
- Save
the page (File > Save).
|