CFCONTENT does not reset

2012-08-06 Thread Claude Schnéegans
Hi, I came across a problem with CFCONTENT. Even if the attribute RESET=yes is used, the content which was previously set by cfhtmlhead is not reset. Ex 1: cfhtmlhead text = 'This is in the head section' cfcontent type=text/html; charset=ISO-8859-1 RESET=yes This shouldn't have the head

Re: CFCONTENT does not reset

2012-08-06 Thread Dave Watts
I came across a problem with CFCONTENT. Even if the attribute RESET=yes is used, the content which was previously set by cfhtmlhead is not reset. Ex 1: cfhtmlhead text = 'This is in the head section' cfcontent type=text/html; charset=ISO-8859-1 RESET=yes This shouldn't have the head

Re: CFCONTENT does not reset

2012-08-06 Thread Claude Schnéegans
Once you use any functionality that explicitly writes part of the response (CFHTMLHEAD, CFHEADER, etc) you can't use functionality that lets you manipulate the storage buffer (CFCONTENT, CFFLUSH). Not so sure about this. I've noticed that the effect of CFHTMLHEAD is to find the HEAD.../HEAD

Re: CFCONTENT does not reset

2012-08-06 Thread Claude Schnéegans
Once you use any functionality that explicitly writes part of the response (CFHTMLHEAD, CFHEADER, etc) you can't use functionality that lets you manipulate the storage buffer (CFCONTENT, CFFLUSH). I think it is actually the opposite: Once you have used CFCONTENT, CFFLUSH, you cannot use any