Re: !-#include file=cfFile.cfm -

2001-01-05 Thread Fred T. Sanders

True at least with the cfinclude tag. However (yes I know it has some
overhead attached, you can cfhttp the other pages in.


- Original Message -
From: "Norman Elton" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Thursday, January 04, 2001 6:46 PM
Subject: RE: !-#include file="cfFile.cfm" -


 Mmmm I'd be a bit hesitant to say it's impossible. It IS impossible
for
 ColdFusion to do the including. Many webservers; however, allow for simple
 Server-Side Includes (SSI as I've heard it). There isn't a standard
syntax.

 Look up the documentation for your webserver.

 Norman Elton
 Information Technology
 College of William  Mary

 -Original Message-
 From: sebastian palmigiani [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, January 04, 2001 4:57 PM
 To: CF-Talk
 Subject: Re: !-#include file="cfFile.cfm" -



 You can't do it.


 on 1/4/01 11:18 AM, Eric Fickes at [EMAIL PROTECTED] wrote:

  Hello all,
 
  Has anyone ever included a cfm file inside of a .html file?  I've got an
  HTML page that I would like to include a small CF page inside of and I
 can't
  seem to get it to work.  I've tried the following
 
  !-#include file="cfFile.cfm" -
 
  !-#include virtual="cfFile.cfm" -
 
  and neither seem to do anything.  Any ideas?
 
  E
 
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: !-#include file=cfFile.cfm -

2001-01-05 Thread Owens, Howard




I can't believe all of the people who posted to this question and said that
it can't be done.

Let me reinterate:  IT CAN BE DONE.

We need to nip in the bud this my myth that it can't be done.

It doesn't take any special configuration of the server or CF.

Just include your SSI include in a .shtml page.  

Just include: !--#include virtual="/ssi/mycffile.cfm"-- on a .shtml page
and it will work.

If you got to: http://www.insidevc.com/index.shtml

Scroll down the page and find "STOCK WATCH"  That is a .cfm page called into
our index.shtml page via a regular SSI.

H.


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: !-#include file=cfFile.cfm - - try a Fuselet

2001-01-05 Thread Billy Cravens

You should really look at your code.  The site blows up in Netscape.

-- 
Billy Cravens
[EMAIL PROTECTED]

[EMAIL PROTECTED] wrote:
 
  Has anyone ever included a cfm file inside of a .html file?  I've got an
  HTML page that I would like to include a small CF page inside of
  and I can't
  seem to get it to work.  I've tried the following
 
  !-#include file="cfFile.cfm" -
 
  !-#include virtual="cfFile.cfm" -
 
  and neither seem to do anything.  Any ideas?
 
 Using our Fuselet method, you can put a CF (or ASP) application on any type
 of webpage, served on any platform, with one line of code.
 
 Check out Ben Forta's Tip-of-the-Day in Fuselet format by pasting this line
 of code on any one of your pages:
 
   script language="JavaScript"
 src="http://fuselets.com/cftips/display.cfm"/script
 
 Or see it in action at http://fuselets.com/cftips.
 
 Details on creating your own Fuselets will be coming shortly.
 
 Ron Allen Hornbaker
 President/CTO
 Humankind Systems, Inc.
 http://humankindsystems.com
 mailto:[EMAIL PROTECTED]
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: !-#include file=cfFile.cfm - - try a Fuselet

2001-01-05 Thread ron

Looks okay to me with NS4.7, NS6, and NS4.5 on a Mac. Can you be more
specific?

-ron

 -Original Message-
 From: Billy Cravens [mailto:[EMAIL PROTECTED]]
 Sent: Friday, January 05, 2001 3:19 PM
 To: CF-Talk
 Subject: Re: !-#include file="cfFile.cfm" - - try a Fuselet


 You should really look at your code.  The site blows up in Netscape.

 --
 Billy Cravens
 [EMAIL PROTECTED]

 [EMAIL PROTECTED] wrote:
 
   Has anyone ever included a cfm file inside of a .html file?
 I've got an
   HTML page that I would like to include a small CF page inside of
   and I can't
   seem to get it to work.  I've tried the following
  
   !-#include file="cfFile.cfm" -
  
   !-#include virtual="cfFile.cfm" -
  
   and neither seem to do anything.  Any ideas?
 
  Using our Fuselet method, you can put a CF (or ASP) application
 on any type
  of webpage, served on any platform, with one line of code.
 
  Check out Ben Forta's Tip-of-the-Day in Fuselet format by
 pasting this line
  of code on any one of your pages:
 
script language="JavaScript"
  src="http://fuselets.com/cftips/display.cfm"/script
 
  Or see it in action at http://fuselets.com/cftips.
 
  Details on creating your own Fuselets will be coming shortly.
 
  Ron Allen Hornbaker
  President/CTO
  Humankind Systems, Inc.
  http://humankindsystems.com
  mailto:[EMAIL PROTECTED]
 




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: !-#include file=cfFile.cfm - - try a Fuselet

2001-01-05 Thread Robert Everland III

What the heck is a fuselet.


Bob Everland

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 04, 2001 5:40 PM
To: CF-Talk
Subject: RE: !-#include file="cfFile.cfm" - - try a Fuselet


 Has anyone ever included a cfm file inside of a .html file?  I've got an
 HTML page that I would like to include a small CF page inside of
 and I can't
 seem to get it to work.  I've tried the following

 !-#include file="cfFile.cfm" -

 !-#include virtual="cfFile.cfm" -

 and neither seem to do anything.  Any ideas?

Using our Fuselet method, you can put a CF (or ASP) application on any type
of webpage, served on any platform, with one line of code.

Check out Ben Forta's Tip-of-the-Day in Fuselet format by pasting this line
of code on any one of your pages:

  script language="JavaScript"
src="http://fuselets.com/cftips/display.cfm"/script

Or see it in action at http://fuselets.com/cftips.

Details on creating your own Fuselets will be coming shortly.

Ron Allen Hornbaker
President/CTO
Humankind Systems, Inc.
http://humankindsystems.com
mailto:[EMAIL PROTECTED]
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: !-#include file=cfFile.cfm - - try a Fuselet

2001-01-05 Thread lsellers


 What the heck is a fuselet.


 Bob Everland

Min smirks as he walks off the stage and hits the flood light. He fumbles in
his pocket for a smoke, waiting for a speaker to run up the isle to the
stage.

--min




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



!-#include file=cfFile.cfm -

2001-01-04 Thread Eric Fickes

Hello all,

Has anyone ever included a cfm file inside of a .html file?  I've got an
HTML page that I would like to include a small CF page inside of and I can't
seem to get it to work.  I've tried the following

!-#include file="cfFile.cfm" -

!-#include virtual="cfFile.cfm" -

and neither seem to do anything.  Any ideas?

E

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: !-#include file=cfFile.cfm -

2001-01-04 Thread Alex Leon

Eric,

This won't work because the template won't get sent to ColdFusion for
processing before it is included.  You need to make the whole page a ".cfm"
and use CFINCLUDE.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: !-#include file=cfFile.cfm -

2001-01-04 Thread sebastian palmigiani


You can't do it.


on 1/4/01 11:18 AM, Eric Fickes at [EMAIL PROTECTED] wrote:

 Hello all,
 
 Has anyone ever included a cfm file inside of a .html file?  I've got an
 HTML page that I would like to include a small CF page inside of and I can't
 seem to get it to work.  I've tried the following
 
 !-#include file="cfFile.cfm" -
 
 !-#include virtual="cfFile.cfm" -
 
 and neither seem to do anything.  Any ideas?
 
 E
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: !-#include file=cfFile.cfm -

2001-01-04 Thread Kevin Langevin

Well, the .cfm certainly wouldn't be interpreted by the CF server if you do
this.  I've never included a file this way in an HTML file before, but you'd
be better off changing your HTML file into a .cfm file itself.

CFUG-SFL Manager
-Kev
/CFUG-SFL Manager

 -Original Message-
 From: Eric Fickes [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, January 04, 2001 12:19 PM
 To: CF-Talk
 Subject: !-#include file="cfFile.cfm" -


 Hello all,

 Has anyone ever included a cfm file inside of a .html file?  I've got an
 HTML page that I would like to include a small CF page inside of
 and I can't
 seem to get it to work.  I've tried the following

 !-#include file="cfFile.cfm" -

 !-#include virtual="cfFile.cfm" -

 and neither seem to do anything.  Any ideas?

 E


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: !-#include file=cfFile.cfm -

2001-01-04 Thread Billy Cravens

Remember that this only includes the file as ASCII -- nothing is
executed.  Including a .cfm will have the same effect as including a
..htm or .txt, because IIS still sees the end result as a .htm, which
never gets processed by ColdFusion.

-- 
Billy Cravens
[EMAIL PROTECTED]


Eric Fickes wrote:
 
 Hello all,
 
 Has anyone ever included a cfm file inside of a .html file?  I've got an
 HTML page that I would like to include a small CF page inside of and I can't
 seem to get it to work.  I've tried the following
 
 !-#include file="cfFile.cfm" -
 
 !-#include virtual="cfFile.cfm" -
 
 and neither seem to do anything.  Any ideas?
 
 E
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: !-#include file=cfFile.cfm -

2001-01-04 Thread Rick Lamb

That's not going to work because it has to run before the html is parsed,
which is when the SSI is included.

Rick

-Original Message-
From: Eric Fickes [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 04, 2001 11:19 AM
To: CF-Talk
Subject: !-#include file="cfFile.cfm" -


Hello all,

Has anyone ever included a cfm file inside of a .html file?  I've got an
HTML page that I would like to include a small CF page inside of and I can't
seem to get it to work.  I've tried the following

!-#include file="cfFile.cfm" -

!-#include virtual="cfFile.cfm" -

and neither seem to do anything.  Any ideas?

E
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: !-#include file=cfFile.cfm -

2001-01-04 Thread John Quarto-vonTivadar

if you're parsing a HTML file, then the CF engine would never touch the file
and therefore even IF you got the server-side include to work, you'd just
include the CFM template, not execute it.

you have two options:

1) rename your HTML file to a .cfm extension and do the include with the
cfinclude tag
2) or, change your web server setting to interpret .htm, .html files as cfm
files

the obvious choice is (1). If you're really stuck you might do (2).  Or if
you are from the unix school that prefers ".html" over ".htm" then perhaps
leave one for your regular html files and use the other to be parsed by the
CF engine.  IE, leave.html as "true" .html files and use ".htm" to mean the
same as ".cfm".  However, other than the nomenclature this is still the same
as doing (1) above

- Original Message -
From: "Eric Fickes" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Thursday, January 04, 2001 12:18 PM
Subject: !-#include file="cfFile.cfm" -


 Hello all,

 Has anyone ever included a cfm file inside of a .html file?  I've got an
 HTML page that I would like to include a small CF page inside of and I
can't
 seem to get it to work.  I've tried the following

 !-#include file="cfFile.cfm" -

 !-#include virtual="cfFile.cfm" -

 and neither seem to do anything.  Any ideas?

 E


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: !-#include file=cfFile.cfm -

2001-01-04 Thread Patricia Lee

Incluiding a .cfm file into a .cfm file isn't going to work.  The .htm file
isn't going to cause .cfm files to process because the web server will not
send it through the cf server for processing.  

The only way it would work in theory is if you set your web server up to
have files with extensions of .htm process through the cf server.  And at
that point you could just go ahead and use a regurlar cfinclude.

-Patti

 -Original Message-
 From: Eric Fickes [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, January 04, 2001 12:19 PM
 To: CF-Talk
 Subject: !-#include file="cfFile.cfm" -
 
 
 Hello all,
 
 Has anyone ever included a cfm file inside of a .html file?  
 I've got an
 HTML page that I would like to include a small CF page inside 
 of and I can't
 seem to get it to work.  I've tried the following
 
 !-#include file="cfFile.cfm" -
 
 !-#include virtual="cfFile.cfm" -
 
 and neither seem to do anything.  Any ideas?
 
 E
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: !-#include file=cfFile.cfm -

2001-01-04 Thread Chad Gray

You could make the html file a cfm file and use CFINCLUDE 
TEMPLATE="template_name.cfm"


At 12:18 PM 1/4/01 -0500, you wrote:
Hello all,

Has anyone ever included a cfm file inside of a .html file?  I've got an
HTML page that I would like to include a small CF page inside of and I can't
seem to get it to work.  I've tried the following

!-#include file="cfFile.cfm" -

!-#include virtual="cfFile.cfm" -

and neither seem to do anything.  Any ideas?

E


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: !-#include file=cfFile.cfm -

2001-01-04 Thread Jon Hall

The cfm page will not run unless it is processed by the coldfusion dll.
There are a couple of ways to do this. Change your html pages to be run
through coldfusion or use the img src="mypage.cfm" trick and use cfcontent
to spit out your content.


jon
- Original Message -
From: "Eric Fickes" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Thursday, January 04, 2001 12:18 PM
Subject: !-#include file="cfFile.cfm" -


 Hello all,

 Has anyone ever included a cfm file inside of a .html file?  I've got an
 HTML page that I would like to include a small CF page inside of and I
can't
 seem to get it to work.  I've tried the following

 !-#include file="cfFile.cfm" -

 !-#include virtual="cfFile.cfm" -

 and neither seem to do anything.  Any ideas?

 E


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: !-#include file=cfFile.cfm -

2001-01-04 Thread John McKown

Why not use an IFRAME?

John McKown, VP Business Services
Delaware.Net, Inc.
30 Old Rudnick Lane, Suite 200 Dover, DE 19901
email: [EMAIL PROTECTED] 
phone: 302-736-5515
fax: 302-736-5945
icq: 1495432



 -Original Message-
 From: Eric Fickes [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, January 04, 2001 12:19 PM
 To: CF-Talk
 Subject: !-#include file="cfFile.cfm" -
 
 
 Hello all,
 
 Has anyone ever included a cfm file inside of a .html file?  I've got an
 HTML page that I would like to include a small CF page inside of 
 and I can't
 seem to get it to work.  I've tried the following
 
 !-#include file="cfFile.cfm" -
 
 !-#include virtual="cfFile.cfm" -
 
 and neither seem to do anything.  Any ideas?
 
 E
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: !-#include file=cfFile.cfm -

2001-01-04 Thread Christopher Olive, CIO

that's because a file with a .html extension doesn't get processed by CFAS.
you need to map .html to the CFAS dll.

chris olive, cio
cresco technologies
[EMAIL PROTECTED]
http://www.crescotech.com



-Original Message-
From: Eric Fickes [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 04, 2001 12:19 PM
To: CF-Talk
Subject: !-#include file="cfFile.cfm" -


Hello all,

Has anyone ever included a cfm file inside of a .html file?  I've got an
HTML page that I would like to include a small CF page inside of and I can't
seem to get it to work.  I've tried the following

!-#include file="cfFile.cfm" -

!-#include virtual="cfFile.cfm" -

and neither seem to do anything.  Any ideas?

E
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: !-#include file=cfFile.cfm - - try a Fuselet

2001-01-04 Thread ron

 Has anyone ever included a cfm file inside of a .html file?  I've got an
 HTML page that I would like to include a small CF page inside of
 and I can't
 seem to get it to work.  I've tried the following

 !-#include file="cfFile.cfm" -

 !-#include virtual="cfFile.cfm" -

 and neither seem to do anything.  Any ideas?

Using our Fuselet method, you can put a CF (or ASP) application on any type
of webpage, served on any platform, with one line of code.

Check out Ben Forta's Tip-of-the-Day in Fuselet format by pasting this line
of code on any one of your pages:

  script language="JavaScript"
src="http://fuselets.com/cftips/display.cfm"/script

Or see it in action at http://fuselets.com/cftips.

Details on creating your own Fuselets will be coming shortly.

Ron Allen Hornbaker
President/CTO
Humankind Systems, Inc.
http://humankindsystems.com
mailto:[EMAIL PROTECTED]




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: !-#include file=cfFile.cfm -

2001-01-04 Thread Brendan Avery

If you do any of the following:
cfinclude template="somepage.asp"
cfinclude template="somepage.html"
cfinclude template="somepage.txt"
cfinclude template="whatever"

It will still think of it as a CFML document and will try to parse it as such.

--B][A / [EMAIL PROTECTED]

Also, if you do a cfinclude
At 03:57 PM 1/4/2001 -0600, you wrote:

You can't do it.


on 1/4/01 11:18 AM, Eric Fickes at [EMAIL PROTECTED] wrote:

  Hello all,
 
  Has anyone ever included a cfm file inside of a .html file?  I've got an
  HTML page that I would like to include a small CF page inside of and I 
 can't
  seem to get it to work.  I've tried the following
 
  !-#include file="cfFile.cfm" -
 
  !-#include virtual="cfFile.cfm" -
 
  and neither seem to do anything.  Any ideas?
 
  E
 
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: !-#include file=cfFile.cfm -

2001-01-04 Thread Norman Elton

Mmmm I'd be a bit hesitant to say it's impossible. It IS impossible for
ColdFusion to do the including. Many webservers; however, allow for simple
Server-Side Includes (SSI as I've heard it). There isn't a standard syntax.

Look up the documentation for your webserver.

Norman Elton
Information Technology
College of William  Mary

-Original Message-
From: sebastian palmigiani [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 04, 2001 4:57 PM
To: CF-Talk
Subject: Re: !-#include file="cfFile.cfm" -



You can't do it.


on 1/4/01 11:18 AM, Eric Fickes at [EMAIL PROTECTED] wrote:

 Hello all,

 Has anyone ever included a cfm file inside of a .html file?  I've got an
 HTML page that I would like to include a small CF page inside of and I
can't
 seem to get it to work.  I've tried the following

 !-#include file="cfFile.cfm" -

 !-#include virtual="cfFile.cfm" -

 and neither seem to do anything.  Any ideas?

 E


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: !-#include file=cfFile.cfm -

2001-01-04 Thread Owens, Howard



You can do it. I do it all of the time.

I use:

!--#include virtual="/ssi/mycffile.cfm"--

Make sure your file is named with the .shtml extension.

Also make sure your server is set up to parse .shtml as Server Side Include
pages.

I'm stuck with a situation where most of our pages are put together using
SSI, but I often want to include dynamic component on pages. Since I'm a CF
programer and not a PERL programmer, I've got to use CF.  So thank God this
does work.

H.



 -Original Message-
 From: Eric Fickes [SMTP:[EMAIL PROTECTED]]
 Sent: Thursday, January 04, 2001 9:19 AM
 To:   CF-Talk
 Subject:  !-#include file="cfFile.cfm" -
 
 Hello all,
 
 Has anyone ever included a cfm file inside of a .html file?  I've got an
 HTML page that I would like to include a small CF page inside of and I
 can't
 seem to get it to work.  I've tried the following
 
 !-#include file="cfFile.cfm" -
 
 !-#include virtual="cfFile.cfm" -
 
 and neither seem to do anything.  Any ideas?
 
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: !-#include file=cfFile.cfm -

2001-01-04 Thread Jon Hall

The cfm page will not run unless it is processed by the coldfusion dll.
There are a couple of ways to do this. Change your html pages to be run
through coldfusion or use the img src="mypage.cfm" trick and use cfcontent
to spit out your content.


jon
- Original Message -
From: "Eric Fickes" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Thursday, January 04, 2001 12:18 PM
Subject: !-#include file="cfFile.cfm" -


 Hello all,

 Has anyone ever included a cfm file inside of a .html file?  I've got an
 HTML page that I would like to include a small CF page inside of and I
can't
 seem to get it to work.  I've tried the following

 !-#include file="cfFile.cfm" -

 !-#include virtual="cfFile.cfm" -

 and neither seem to do anything.  Any ideas?

 E


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: !-#include file=cfFile.cfm -

2001-01-04 Thread CF

Actually, isn't there a way to pre-process a cfm file?  I'm almost certain
Jamie and I each did it once.

Jamie?  Do you remember where we passed that cfm file through the dll for
processing before we did something with it?  Will that apply in this case?

Todd

- Original Message -
From: "Billy Cravens" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Thursday, January 04, 2001 1:48 PM
Subject: Re: !-#include file="cfFile.cfm" -


 Remember that this only includes the file as ASCII -- nothing is
 executed.  Including a .cfm will have the same effect as including a
 ..htm or .txt, because IIS still sees the end result as a .htm, which
 never gets processed by ColdFusion.

 --
 Billy Cravens
 [EMAIL PROTECTED]


 Eric Fickes wrote:
 
  Hello all,
 
  Has anyone ever included a cfm file inside of a .html file?  I've got an
  HTML page that I would like to include a small CF page inside of and I
can't
  seem to get it to work.  I've tried the following
 
  !-#include file="cfFile.cfm" -
 
  !-#include virtual="cfFile.cfm" -
 
  and neither seem to do anything.  Any ideas?
 
  E
 
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists