because all the CFINCLUDE does is grab whatever is in the template file and
insert it into the currently running template. You've given it a file name
of
"navigation_e.cfm?page=services" (which may or may not be legitimate file
name under your OS) but almost certainly doesn't exist as an actual file).
Since you're only including the code within "navigation_e.cfm", then if you
really need the FORM-like variable you mention then do it as
<cfset FORM.page = "services">
<cfinclude template="navigation_e.cfm">
Of course since this is likely a topic with soem grey spots for you, you
might also want to read up on the differences between CFINCLUDE and CFMODULE
and Custom Tags. There was a nice article by Charlie Arehart in the CFDJ
last month that talks about this.
> Can s.o. tell me why this isn't possible ?
>
> <cfinclude template="navigation_e.cfm?page=services">
>
> It throws an CFInclude-Template-error !
>
> Ideas what to do instead ?
>
> Uwe
.
------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.