Accessing the Tag Chooser
Press Ctrl-E for instant access to the Tag Chooser (and tags for CFML, HTML, ASP, PHP, WML, and more). (Applies to: Dreamweaver MX)
Press Ctrl-E for instant access to the Tag Chooser (and tags for CFML, HTML, ASP, PHP, WML, and more). (Applies to: Dreamweaver MX)
List processing is slow - there actually is no list data type in ColdFusion, lists are simply strings. Any list processing requires lots of string manipulation, and that is time consuming (even more so in ColdFusion MX). Lists were originally intended as a way to work with data like form fields and...
The security framework in ColdFusion MX provides the foundation for implementing access control. To actually restrict access to specific functionality simply wrap the code in a statement checking for IsUserInRole(). (Applies to: ColdFusion MX)
Users are logged out of the security framework automatically when their SESSION expires. To force a manual logout use the tag. (Applies to: ColdFusion MX)
When using the security framework, logged in users must be identified as such using the tag. This tag must be used in between and tags. (Applies to: ColdFusion MX)
Within a block, two variables in the CFLOGIN scope provide details about the logged in user. CFLOGIN.name contains the login name, CFLOGIN.password contains the login password. When not in a code block use the GetAuthUser() function to get this information. (Applies to: ColdFusion MX)
Any code specified in between and will be executed only if a user has not yet logged in, making it the right place for login code. (Applies to: ColdFusion MX)
Need to implement access control? Look at the new security framework in ColdFusion MX (implemented via and related tags). (Applies to: ColdFusion MX)
The quickest way to change page properties (including background color, title, margins, and more) is to use the Page Properties dialog. You can select this option from the Modify menu or just press Ctrl-J. (Applies to: Dreamweaver MX)
Using Web Services in your CFML code? makes the process easy, and Dreamweaver makes it even easier. You can add Web Services to Dreamweaver by selecting the Components tab in the Application panel and switching to the Web Services view, and then clicking the + button. Once you have provided the URL...