Quite right. One benefit of using the AJAX method is that the same server-side routine can be used via AJAX before posting (for the client's benefit) and also...
Hello Guys, I'd like to get your thoughts on the differences between cfscript and standard cfml tag based code. I've worked using both methods for some time ...
You can use what the previous guy said - and replace or escape the html as you want when outputting your search. You may also want to consider this post: ...
... It might reflect the version of FarCry you are running. Last I saw you were running something much older than the current version. Unfortunately,...
Hello Guys, I have a bunch of records of log data, all with a datetime stamp on it, and I'm looking to have SQL Server return them grouped into hours. I've...
Pre MX that was the case, now there is no spped increase in cfscript over cfml anymore. As for preference, I think it is just that now preference. On 5/1/07,...
We have inherited web sites with a lot of Crystal Reports. None of the reports are 508 compliant. We have been looking into converting the reports. One...
I can't remember where I saw it, but someone actually looked at the compiled code of CFScript vs. the compiles code of Tag based coding. The Cfscript compiles...
... okay, that does help. I need a new oracle book because I have difficulty finding a reference list of functions. I can do "if null then insert a base...
Until the maintenance bill goes to the customer and they ask why the JS and the CF routines had to be written twice... But if you have rich customers, no...
Hi all, I've an issue with the output of a query. I want to create an output that spans timeslots. I think I might have to do a series of nested loops and...
... twice... But if you have rich customers, no problem. My customers are not rich, (my taylor is) but they don't even know what is JS or CF anyway ;-) -- ...
Ok, So I now have this grouping as I want it too, using that date part function, I just need a little help with the counting. Look below for my current query ...
A guy in my CFUG did a comparison of the decompiled JIT code, and found that cfscript was faster. Sure if your example is: <cfif (a eq b)> <cfset a = c /> ...
... We use Reactor and ColdSpring to underpin a fairly normal n-tier service/manager methodology. All our new front-ends are Flex, so we don't have a current...
Thanks for the input on this stuff guys, I think I can agree with you Chris, that was always my line of thought that cfscript is nearer to the runtime code and...
Lucky you - mine often become experts as soon as I hand over the app. ... -- mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ ...
That too :-) Cheers, Previous Guy ... From: Raymond Camden [mailto:rcamden@...] Sent: Tuesday, May 01, 2007 7:05 AM To: CF-Talk Subject: Re: Strip HTML...
Can anyone suggest a regex or another easy way to change all the cfquery table name code and other required bits (file names, etc.) to lowercase for...
... only one validation routine needs to be maintained. Fine, but it is means more overhead for the server, thus less efficiency for the user. The purpose of...
stylo, If you change the setting for mysql to lower_case_table_names=1 instead of the default 0, you won't have to worry about the upper case names in your...
Perfect Deanna, That works nicely, glad I've got you guys on hand, I would have NEVER gotten that one on my own. Thanks a million, Rob ... From: Deanna...
Thanks for the suggestion Pete, I'm sure that this datepart() function is defiantly going to be the way to do this, however I'm struggling to get your solution...