Re: Remove white space

2006-01-27 Thread Matt Robertson
What Larry said. HTMLCompressFormat is the bomb. You can set it to a slightly less aggressive setting to save single carriage returns. -- --Matt Robertson-- Janitor, MSB Web Systems http://mysecretbase.com ~| Message:

RE: Remove white space

2006-01-24 Thread Dawson, Michael
I've not seen where that tag helps me, either. I prefer to do a few other things. cfsetting enablecfoutputonly=yes cfsilent (I don't use this much.) And, before the first HTML tag, I reset the stream: cfcontent type=text/html reset=yes The cfcontent tag will wipe any previous displayable

Re: Remove white space

2006-01-24 Thread Larry Lyons
So I've tried that, viewed source on the changed file and it looks exactly the same. I'm running CFMX6.1 on my windows test machine. Does anyone have any ideas or alternate code which I might try? !//-- andy matthews web developer Andy, What I do is put the page in between a

Re: remove white space

2000-08-17 Thread Dick Applebaum
Here's a general example that you can modify to fit your needs: --- Define Some WhiteSpace Characters --- CFSET T = Chr(09) CFSET R = Chr(13) Chr(10) CFSET S = " " --- Define a String including WhiteSpace Characters --- CFSET Before = S S S T T "123" T T

Re: remove white space

2000-08-16 Thread AustralianAccommodation.com Pty. Ltd.
CFSET nonmembemail = Replace(propertyname, chr(32), "", "ALL" ) this above is the code will be what removes the white spaces between words on a field - Original Message - From: "avex" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 17, 2000 2:06 PM Subject: remove white

Re: remove white space

2000-08-16 Thread rkeniger
try #replace(string,chr(32),"","ALL")# Rob Keniger -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

Re: remove white space

2000-08-16 Thread Shane
Replace(your_variable, " ", "", "ALL") - Original Message - From: "avex" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, August 16, 2000 10:06 PM Subject: remove white space Hi, I would like to strip a string of white space from the MIDDLE of a string... eg turn 2 words