Need a Break?
Need to insert a tag? Just press Shift-Return. This will work in both code and design views. (Applies to: Dreamweaver MX)
Need to insert a tag? Just press Shift-Return. This will work in both code and design views. (Applies to: Dreamweaver MX)
To simply create a named anchor highlight the text (or image) and press Ctrl-Alt-A. This will work in both code and design views. (Applies to: Dreamweaver MX)
To quickly insert a Flash SWF file into your page (with all supporting code) press Ctrl-Alt-F. This will work in both code and design views. (Applies to: Dreamweaver MX)
To quickly insert an image into your code (complete with populated HEIGHT and WIDTH attributes) press Ctrl-Alt-I. This will work in both code and design views. (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)