Re: anti-cfflush

2003-02-25 Thread mark brinkworth
Mostly it is documented in the JSP specs, which is
possibly why MM didn't go overboard on documenting the
function. It provides a number of convenience function
to get references to various objects (such as the
Request object, the Response object, and in the case
of this code, getOut returns a reference to the
JSPWriter object).

Cheers



 --- Paul Hastings <[EMAIL PROTECTED]> wrote: > > 
> 
> i suppose i should know this but what else is
> hungoff of getPageContext()?
> its kind of lacking in terms of docs.
> 
> 

__
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: anti-cfflush

2003-02-24 Thread Andre Mohamed
More specifically, see here:

http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/jsp/PageCont
ext.html

Thanks,

André

-Original Message-
From: Paul Hastings [mailto:[EMAIL PROTECTED] 
Sent: 24 February 2003 15:26
To: CF-Talk
Subject: Re: anti-cfflush

> 

i suppose i should know this but what else is hungoff of
getPageContext()?
its kind of lacking in terms of docs.


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: anti-cfflush

2003-02-24 Thread Andre Mohamed
You probably want to refer to the JSP specs here:
http://java.sun.com/products/jsp/download.html#specs

to get the best understanding of full capabilities of the Page Context
object.

Thanks,

André

-Original Message-
From: Paul Hastings [mailto:[EMAIL PROTECTED] 
Sent: 24 February 2003 15:26
To: CF-Talk
Subject: Re: anti-cfflush

> 

i suppose i should know this but what else is hungoff of
getPageContext()?
its kind of lacking in terms of docs.


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: anti-cfflush

2003-02-24 Thread Paul Hastings
> 

i suppose i should know this but what else is hungoff of getPageContext()?
its kind of lacking in terms of docs.

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: anti-cfflush

2003-02-24 Thread mark brinkworth
Dang, forgot about that way
> 
> 
> 
> Jochem


__
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: anti-cfflush

2003-02-24 Thread Hugo Ahlenius
Thanks,

I knew it wouldn't be too hard! This way I can ensure that the XML
declaration (for XHTML pages) gets on top, without having to worry about
white-spaces before!





~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: anti-cfflush

2003-02-24 Thread Jochem van Dieten
Hugo Ahlenius wrote:
> 
> I thought it would be natural to have a tag that just deletes the current
> rendered page from memory, and starts off again. Kind of like cfflush,
> which flushes the page to the client, but instead flushes it from memory.



Jochem

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: anti-cfflush

2003-02-24 Thread mark brinkworth
In CFMX you could do this



Cheers,
Mark



 --- Hugo Ahlenius <[EMAIL PROTECTED]> wrote: >
Hi,
> 
> Am I missing something... ? If I may, please direct
> me to where I can do
> my homework...
> 
> I thought it would be natural to have a tag that
> just deletes the current
> rendered page from memory, and starts off again.
> Kind of like cfflush,
> which flushes the page to the client, but instead
> flushes it from memory.
> 
> Does it make sense?
> 
> 
> 
> 
> 
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4