RE: include not included with application variable

2005-05-05 Thread Justin D. Scott
in my Application.cfm file, I have: cfset request.template_blocks = http://hhp.umd.edu/empower/template_blocks/; On that page, I have the following code: cfoutput cfinclude template=#request.template_blocks#banner.cfm cfinclude template=#request.template_blocks#nav_none.cfm

RE: include not included with application variable

2005-05-05 Thread Damien McKenna
-Original Message- From: Justin D. Scott [mailto:[EMAIL PROTECTED] CFINCLUDE only works with file system paths (full path or relative, or with CF mappings). It does not use URLs. If you must use a URL, use CFHTTP to pull it down instead. And also remember that you cannot CFHTTP

RE: include not included with application variable

2005-05-05 Thread daniel kessler
k, thanks all. good to know as I go forward. in my Application.cfm file, I have: CFINCLUDE only works with file system paths (full path or relative, or with CF mappings). It does not use URLs. If you must use a URL, use CFHTTP to pull it down instead.

RE: include not included with application variable

2005-05-05 Thread S . Isaac Dealey
in my Application.cfm file, I have: cfset request.template_blocks = http://hhp.umd.edu/empower/template_blocks/; On that page, I have the following code: cfoutput cfinclude template=#request.template_blocks#banner.cfm cfinclude