Re: CFLINCLUDE in CFSCRIPT

2003-09-11 Thread Matt Liotta
I'm redoing my CFSCRIPT docs and one of the things I'm adding in are all the 'extra' things you can do with it in CFMX. One such thing is a CFLOCATION using GetPageContext().forward(somefile.cfm) I believe that there was a CFINCLUDE type code as well, but I can't seem to find it. If

RE: CFLINCLUDE in CFSCRIPT

2003-09-11 Thread Barney Boisvert
getPageContext.include(template); will do a JSP-style include. Matt Liotta blogged it a while back. If the extension is .html or .htm, the content will be included without CF processing. if the extension is .cfm, it will be processed by CF just like CFINCLUDE. barneyb --- Barney Boisvert,

Re: CFLINCLUDE in CFSCRIPT

2003-09-11 Thread Michael Dinowitz
Perfect, thanks. I'll give you credit and a link in the docs to this (as well as Charlie credit for his CFLOCATION portion). Are there any solid docs on the GetPageContext() stuff? I'm redoing my CFSCRIPT docs and one of the things I'm adding in are all the 'extra' things you can do with

Re: CFLINCLUDE in CFSCRIPT

2003-09-11 Thread Dave Carabetta
I'm redoing my CFSCRIPT docs and one of the things I'm adding in are all the 'extra' things you can do with it in CFMX. One such thing is a CFLOCATION using GetPageContext().forward(somefile.cfm) I believe that there was a CFINCLUDE type code as well, but I can't seem to find it.

RE: CFLINCLUDE in CFSCRIPT

2003-09-11 Thread Tyler Silcox
Dinowitz [mailto:[EMAIL PROTECTED] Sent: Thursday, September 11, 2003 7:04 PM To: CF-Talk Subject: Re: CFLINCLUDE in CFSCRIPT Perfect, thanks. I'll give you credit and a link in the docs to this (as well as Charlie credit for his CFLOCATION portion). Are there any solid docs on the GetPageContext

Re: CFLINCLUDE in CFSCRIPT

2003-09-11 Thread Michael Dinowitz
Got that already, thanks. Do you know of any other GetPageContext() pieces that are floating around? I only remember those 2. For that matter, I think it's worth pointing out that cflocation and GetPageContext().forward(somefile.cfm) are not exactly the same either. One's a client-side

Re: CFLINCLUDE in CFSCRIPT

2003-09-11 Thread Michael Dinowitz
: CFLINCLUDE in CFSCRIPT Perfect, thanks. I'll give you credit and a link in the docs to this (as well as Charlie credit for his CFLOCATION portion). Are there any solid docs on the GetPageContext() stuff? I'm redoing my CFSCRIPT docs and one of the things I'm adding in are all the 'extra