December 27, 2002
If you ever have to show code on a projected screen you've probably discovered that the default code size is too small to be readable. The solution? Go to Preferences, Fonts, and increase the size of the Code View font. (Applies to: Dreamweaver MX)
December 26, 2002
Need to quickly flag a block of text as a heading? Keys Ctrl-1 though Ctrl-6 will insert through tags for you. (Applies to: Dreamweaver MX)
December 25, 2002
The shortcut to insert a paragraph break is Ctrl-Shift-P (not Ctrl-P which will print the current document). (Applies to: Dreamweaver MX)
December 24, 2002
To quicky change code indentation highlight the code and press Ctrl-Alt-] to indent and Ctrl-Alt-[ to outdent. (Applies to: Dreamweaver MX)
December 23, 2002
Java Servlets are essentially programs. They can be invoked from within ColdFusion just like any other Web pages (using ). In addition, Servlets can be accessed directly using the CFML GetPageContext() function's include() method. (Applies to: ColdFusion MX)
December 22, 2002
JSP code can invoke ColdFusion pages using . (Applies to: ColdFusion MX)
December 21, 2002
When possible, ColdFusion automatically handles the conversion of types between it and Java. Most types (for example, integer, date, and boolean) have obvious conversions. Complex data types (including structure and query) do not have exact Java equivalents and are converted to Map. (Applies to:...
December 20, 2002
When Java objects are invoked, ColdFusion attempts to locate the required objects automatically. ColdFusion searches the following locations (in this order): WEB-INF/lib, WEB-INF/classes, the classpath specified in the ColdFusion Administrator, the default JVM classpath. (Applies to: ColdFusion MX)
December 19, 2002
Any Java classes placed in the WEB-INF/classes directory will be automatically loaded by ColdFusion. (Applies to: ColdFusion MX)
December 18, 2002
Any Java libraries (.jar files) placed in the WEB-INF/lib directory will be automatically loaded by ColdFusion. (Applies to: ColdFusion MX)