Re: CFHTMLHEAD

2014-10-16 Thread Gonzo Rock
Just finished a huge migration to CF11 and there were multiple locations where cfhtmlhead are used... and a new one added during migration. No problems with that. Perhaps more details? On Thu, Oct 16, 2014 at 9:34 AM, Dave Sueltenfuss wrote: > > I'm working on a migration from CF9 to CF 11, and

Re: cfhtmlhead and webservice woe

2006-07-26 Thread Ken Ferguson
That's funny, in CFAjax this doesn't cause a problem at all. I was just blogging about using firebug and noticed how it comes back differently in the response, so that preceding script blocks don't break the return. http://www.fergusonhouse.com/blog/index.cfm/2006/7/26/firebug-cfajax One of the

Re: cfhtmlhead and webservice woe

2006-07-26 Thread Rick Root
Brad Wood wrote: > Ok, so I've got ajaxcfc running pretty smoothly, but I still need some > help with my major catching point-cfhtmlhead. Don't use CFHTMLHEAD in your application.cfm or whatever then. Or, if you do, wrap code around it that causes it *NOT* to happen on ajax calls. M

Re: CFHTMLHEAD data

2004-05-13 Thread Jim McAtee
I'm in the same situation (CF 5) and need to be able to have several tags used in the course of generating a single page alter the contents. If I can't get access to the data, what I'm thinking of doing is keeping any data destined for the HTML headers in my own request scope variable and then flu

Re: CFHTMLHEAD data

2004-05-13 Thread Nathan Strutz
#GetPageContext().getOut().getString()# will return all of the rendered output thus far in a string. You can parse through that yourself to find the section and see what's in there. -nathan strutz http://www.dopefly.com/ Tim Blair wrote: > Morning... > > Is there any way that I can get hold

Re: CFHTMLHEAD and appearance of HTTP header code in page

2002-10-14 Thread Gyrus
Many thanks, James, your reply will be a useful reference for the future! Gyrus [EMAIL PROTECTED] work: http://www.tengai.co.uk play: http://www.norlonto.net PGP key available ~| Archives: http://www.houseoffusion.com/cf_lists/in

RE: CFHTMLHEAD and appearance of HTTP header code in page

2002-10-14 Thread James Ang
Ah. I remember this. I wrote an internal paper for MedSeek regarding this bug. :P This only happens under these conditions: 1) MS Internet Explorer as the browser. 2) CFLOCATION is called AFTER CFHTMLHEAD has been called. To be really sure, I think CFHTMLHead should not be in the same CFM Templat

Re: CFHTMLHEAD

2001-03-27 Thread Brian Thornton
You have to double quote instead of single quote - Original Message - From: "Brian Thornton" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, March 27, 2001 12:22 PM Subject: CFHTMLHEAD > } > // --End Hiding Here --> > > "> > > I get the error "Just in

Re: CFHTMLHEAD

2001-03-27 Thread Jay Patton
maybe this: 'Your Message to Mike was sent.' instead of: "Your Message to Mike was sent." ??? Jay Patton Web Design / Application Design Web Pro USA p. 406.549.3337 ext. 203 p. 1.888.5WEBPRO ext. 203 e. [EMAIL PROTECTED] url. www.webpro-usa.com - Original Message - From: "Brian Thornton"

Re: CFHTMLHEAD

2001-03-27 Thread Tim Painter
Change your double quotes to a single quote (the ones that open and close your heading text) - Original Message - From: "Brian Thornton" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, March 27, 2001 3:22 PM Subject: CFHTMLHEAD > } > // --End Hiding Here -

RE: CFHTMLHEAD

2001-03-27 Thread Dan Allison
Try single quotes around your alert message. Dan -Original Message- From: Brian Thornton [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 27, 2001 3:22 PM To: CF-Talk Subject: CFHTMLHEAD "> I get the error "Just in time compilation error An unknown attribute 'Your' has been en

RE: CFHTMLHEAD

2001-03-27 Thread Bob Silverberg
Did you try a single quote? -Original Message- From: Brian Thornton [mailto:[EMAIL PROTECTED]] Sent: March 27, 2001 3:22 PM To: CF-Talk Subject: CFHTMLHEAD "> I get the error "Just in time compilation error An unknown attribute 'Your' has been encountered at document position

Re: CFHTMLHEAD

2001-03-27 Thread David E. Crawford
Caused by the use of double quotes in your "Alert" call. Either use all single quotes or use the CF_HTMLHEADBLOCK custom tag from the Developer's exchange which allows you to bracket the text you want put in the header. DC - Original Message - From: "Brian Thornton" <[EMAIL PROTECTED]> To

RE: CFHTMLHEAD

2001-03-27 Thread Howarth, Craig (IBK-NY)
Use single quotes in the alert() or use a custom tag to implement CFHTMLHEAD the way it should have been done: Save this in a file called htmlhead.cfm and change your code to: