RE: An issue with CFC output

2006-05-11 Thread Ian Skinner
Thanks I thought that the default was false. if output="false" is not in the function tag the extra charaters show up. I just had: IIRC there was once an issue where if there is no output parameter, one got behavior that was neither true or false, but something sort of in between. This ma

RE: An issue with CFC output

2006-05-11 Thread Andy Matthews
What about Trimming the result? #Trim(Myobject.myfunction(oldstring))# What happens when you do this:? [#Myobject.myfunction(oldstring)#] -Original Message- From: Bruce, Rodney S C-E LCMC HQISEC/Signal Solutions [mailto:[EMAIL PROTECTED] Sent: Thursday, May 11, 2006 2:44 PM To: CF-Ta

Re: An issue with CFC output

2006-05-11 Thread Paul Kenney
t in the function tag the extra charaters show up. > I just had: > > > > > > > -Original Message- > From: Ian Skinner [mailto:[EMAIL PROTECTED] > Sent: Thursday, May 11, 2006 12:52 PM > To: CF-Talk > Subject: RE: An issue with CFC output > > > Wi

RE: An issue with CFC output

2006-05-11 Thread Bruce, Rodney S C-E LCMC HQISEC/Signal Solutions
Thanks I thought that the default was false. if output="false" is not in the function tag the extra charaters show up. I just had: -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Thursday, May 11, 2006 12:52 PM To: CF-Talk Subject: RE: An issue with

RE: An issue with CFC output

2006-05-11 Thread Ian Skinner
Without seeing more of your CFC code, I would hazard a guess that you need to add output="false" to your function declarations. Otherwise white space generated in the function can be passed onto the calling page. HTH If not, give us a better example of your CFC and relevant function. ---