RE: Cookie interpretation in JavaScript.

2000-07-19 Thread Dave Notik
You have to escape the /s -- try a ReReplace(string, "/", "//", all) before passing it to JavaScript. -Dave -Original Message- From: OleBlighty [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 18, 2000 4:29 PM To: [EMAIL PROTECTED] Subject: Cookie interpretation in JavaScript. He guys,

CF 5.0 and misc questions...

2000-07-19 Thread Xing Li
Anyone here knows the timetable for CF 5.0? As for the pharoh engine, is it going to compile CFML straight to java bytecode or it it gonna translate it to JSP as show in the tech roadmap pdf? On to misc questions. =) 1) Has anyone gotten or know the meaning behind "Pure virtual function call

RE: cookies?? or what to use

2000-07-19 Thread Anthony Geoghegan
Hi Lewis, I must concede this is an elegant solution. |Why would you want to use session variables when the |CGI.HTTP_REFERER seems to a more logical solution. | I must admit I was thinking more in terms of user variable forgery. I was thinking in terms of a proprietry certificate type

RE: List slowdown problems and solutions

2000-07-19 Thread Anthony Geoghegan
Hi All, This damn list is so slow! I feel like I like I am in another time zone (which I am) and you guys are using snail-mail to contact me. The messages I get are so time scued that I gvet so confuseed it's like I'm on drugs or something. Forget trying to follow a thread. Can we get this list

Performance issues with CFUPDATE/CFINSERT over CFQUERY

2000-07-19 Thread Reynolds, Adam
Anybody noticed any slow down when using CFUPDATE rather than CFQUERY. We appear to be getting major delays of around 16 seconds on an CFUPDATE. We are using Oracle Native drivers. Adam ** This email and any attachments are

List slowdown problems and solutions

2000-07-19 Thread Anthony Geoghegan
-Original Message- From: Anthony Geoghegan Sent: 19 July 2000 10:22 To: '[EMAIL PROTECTED]' Subject: RE: List slowdown problems and solutions Hi All, This damn list is so slow! I feel like I like I am in another time zone (which I am) and you guys are using snail-mail to contact me.

Re: Newbie-session variable and client variable

2000-07-19 Thread Tammy Schilling
--3AE7D769A1D9AE254B8CDD8C Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit I had the same problem, though for me it was because the sample application that was in the book was buggy. If you have the problem check out the errata on Ben Forta's site.

Re: List slowdown problems and solutions

2000-07-19 Thread Angél Stewart
And I feel you should find another list. I don't think anyone who comes to this list asking for solutions to problems, regardless if *YOU* think its ridiculously simple or not, should be termed a "lamer". There is a Newsgroup for CF as well that you can subscribe to. Ask someone on the list for

SQL: ORDER BY in a UNION Query

2000-07-19 Thread Angél Stewart
Hey folks :) I'm trying to write a simple UNION query, between two dynamically created select queries. Based on the feilds that the user entered in the previous form, the SQL statement's WHERE clauses are created. Basically, I want to pull data from the current Employee Info table, and the

Re: ORDER BY in a UNION Query

2000-07-19 Thread Justin MacCarthy
I would say the issue is possibly a reserved word or a quotation mark Can you output the SQL the is generated ~Justin When I stick the Order By statement at the end of the second Select clause, Oracle returns the error: "[Microsoft][ODBC driver for Oracle][Oracle]ORA-00904:

RE: ORDER BY in a UNION Query

2000-07-19 Thread Neil Robinson
Angél, On a union query, the order by clause can only specify a field in the first select query, not the second. I tried specifying a field in the second select query and got an 'invalid column name' error too. Worth a try. Neil -Original Message- From: Angél Stewart [mailto:[EMAIL

RE: ORDER BY in a UNION Query

2000-07-19 Thread Paul Wakefield
Try using column positions, rather than names, eg. (You'll need to substitute appropriate column positions) CFIF IsDefined('ordervalue') CFIF ordervalue EQ "Name" ORDER BY 2 CFELSEIF ordervalue EQ "Absence" ORDER BY 4 /CFIF /CFIF -- Paul

OT: Web Cam's

2000-07-19 Thread Paul Ihrig
Does any one have any suggestions for web cam's? I need to set one up for an architectural project. Have never done one so I need to know what you guys think Advice on model of camera, server config's client needs would be awesome! Mabey even one of you knows of a reseller. -paul

Re: OT: Web Cam's

2000-07-19 Thread Nicklas af Ekenstam
Paul: Does any one have any suggestions for web cam's? I need to set one up for an architectural project. Have never done one so I need to know what you guys think Advice on model of camera, server config's client needs would be awesome! Mabey even one of you knows of a reseller.

RE: Web Cam's

2000-07-19 Thread Ken Monroe
Try an AXIS camera: http://www.axis.com/products/camera_servers/ Very nice -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 19, 2000 9:15 AM To: '[EMAIL PROTECTED]' Subject: OT: Web Cam's Does any one have any suggestions for web cam's? I need to

Javascript: Date Validation for 01-Jan-2000 type dates.

2000-07-19 Thread Angél Stewart
Hello all, the CFINPUT tag does validation for dd/mm/ or mm/dd/. However, I need to validate a form with multiple rows of entry, which will validate a date of the format dd-mmm- When this error occurs, I do NOT want the user to have to RETYPE every single thing they just entered,

Newbie Question

2000-07-19 Thread Gieseman, Athelene
I've developed a few CF apps recently. Unfortunately, I work in an industry that still loves paper (law). So I need to be able to give my users print reports. I put Crystal Reports on my server and have developed several reports. And I tried using the CFREPORT tag with no luck. Looking

Help on 2 datasource query

2000-07-19 Thread Paul Ihrig
can you help me on that 2 datasource query? with the 2 datasource's: http://206.183.250.42/Practiceman/Class01/DataView01A.cfm http://206.183.250.42/Practiceman/Class01/DataView01A.cfm this is an admin page. only returns 1 result it should return many.

CF 5.0

2000-07-19 Thread Gavin Myers
I could have sworn I saw someone mention Cold Fusion 5.0, does anyone have it? How would you rate it against 4.5? Anything new or spectacular? -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To

CFTree issues

2000-07-19 Thread Brian P. Doyle
Hi, I'm trying to use CFTree to display a list of options to populate a select box on a form. Originally I had designed the tree as a pop-up javascript window that would send the values to the parent form on the page that called the pop-up but that's not working. So now I have a number of

RE: ORDER BY in a UNION Query

2000-07-19 Thread Paul Wakefield
Um, I've written many union queries on Oracle, and that's how I've always handled the Order By. It also seems to work on SQL Server. Dunno about the rest of the DB world. -- Paul Wakefield Hanlon's Razor - Never attribute to malice that which can be adequately explained by stupidity.

Is this an opportunity for regular expressions?

2000-07-19 Thread Deanna L. Schneider
Hi Folks, I have a dynamic voting application. The positions and locations open can change, so I want it to be fully dynamic when the form is built and when the data is inserted into the database. So, I can get the output onto the form no prob. These are some examples of form fields and values

RE: Web Cam's

2000-07-19 Thread Paul Ihrig
Thanks Ken. But I need an out door solution. Its to view the construction of a building. -paul -Original Message- From: Ken Monroe [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, July 19, 2000 9:13 AM To: [EMAIL PROTECTED] Subject:RE:

RE: Web Cam's

2000-07-19 Thread Nicklas af Ekenstam
-Original Message- From: Ken Monroe [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, July 19, 2000 9:13 AM To: [EMAIL PROTECTED] Subject:RE: Web Cam's Try an AXIS camera: http://www.axis.com/products/camera_servers/

Sticky variables

2000-07-19 Thread Joel Firestone
Everyone: I've seen a few posts here and there discussing session variables in a clustered environment. Are there any pages or resources I can look at that would help explain them, or how to implement them? A cluster is in my not-so-distant future, so I want to be prepared. Many thanks. Joel

Re: Sticky variables

2000-07-19 Thread Justin MacCarthy
HI Joel, Marc from Advantex has an Excellent article here : http://www.advantex.net/ColdFusion/CFClustering.htm There are a few extra things you could add to it, for example using WDDX to store data you would have stored in a session.structure, but the basics are there ... ~Justin MacCarthy

(Admin) Re: List slowdown problems and solutions

2000-07-19 Thread Michael Dinowitz
I'm not going to defend myself or the alterations to the list here but instead defend the list itself. Those 200+ posts a day you get are from dedicated people who either know something or want to know something. There is no sin in that and they should not be berated for it. Yes I know many

RE: ORDER BY in a UNION Query

2000-07-19 Thread Olive, Christopher M Mr USACHPPM
odd. last time i ported from informix (where i used the column position) to Oracle 8i, it barfed. strange. i'll have to try it again. Chris Olive, DOEHRS Website Administrator -Original Message- From: Paul Wakefield [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 19, 2000 10:14 AM

RE: CF 5.0 and misc questions...

2000-07-19 Thread Dave Watts
Anyone here knows the timetable for CF 5.0? As for the pharoh engine, is it going to compile CFML straight to java bytecode or it it gonna translate it to JSP as show in the tech roadmap pdf? I don't think anyone knows yet. I'd guess that the Java-based engine will treat CFML scripts the

RE: ORDER BY in a UNION Query

2000-07-19 Thread Paul Wakefield
I was working in Oracle 7.3 - but I can't see why they'd disabled that facility on a later version. -- Paul Wakefield Hanlon's Razor - Never attribute to malice that which can be adequately explained by stupidity. -Original Message- From: Olive, Christopher M Mr USACHPPM

RE: CF 5.0 and misc questions...

2000-07-19 Thread Nicklas af Ekenstam
Dave Watts: snip Remember, CF is designed to do one thing, and one thing only - generate HTTP response data. If you want to do something else, like run programs at arbitrary times, you can do it in CF, but it's a kludge, and you might be better off using another tool for that task. That's about

RE: ORDER BY in a UNION Query

2000-07-19 Thread Nicklas af Ekenstam
Dave Watts: snip Remember, CF is designed to do one thing, and one thing only - generate HTTP response data. If you want to do something else, like run programs at arbitrary times, you can do it in CF, but it's a kludge, and you might be better off using another tool for that task. That's

Re: Is this an opportunity for regular expressions?

2000-07-19 Thread Erki Esken
See if this code snippet helps you out: ---index.cfm--- form action="index.cfm" method="post" cfloop from="1" to="10" index="i" cfoutput input type="hidden" name="POSID#RandRange(100,)#LOCID#RandRange(100,)#" value="#RandRange(100,)#" /cfoutput /cfloop input

Re: Is this an opportunity for regular expressions?

2000-07-19 Thread Deanna L. Schneider
Woo hoo! Thanks Erik, that's exactly what I needed. Hm...now I just have to disect that regular expression stuff so I know how to do it again. ;) -d Deanna Schneider Interactive Media Developer UWEX Cooperative Extension Electronic

Re: CF 5.0 and misc questions...

2000-07-19 Thread Erki Esken
I don't think anyone knows yet. I'd guess that the Java-based engine will treat CFML scripts the same way it would treat JSP scripts; JSP scripts get converted to servlets and "compiled" into bytecode when they're requested the first time. Does anyone know how JRun's CF_Anywhere works?

RE: CF Chat Application

2000-07-19 Thread Dave Watts
I have yet to find a good CF-based chat program. Unfortunately, these programs rely on auto page refreshes and can be quite annoying. If you're expecting to find a CF-based chat program which doesn't rely on automatic page refreshes, don't hold your breath! That's outside the scope of what CF,

Problems With CFGRID Display

2000-07-19 Thread Double Down
Having a problem displaying CFGRID in Netscape and in some versions of IE. When the grid loads this error comes up: Applet allaire.controls.cfGridFormApplet class allaire.controld.cfGridFormApples could not be loaded. CFIDE is loaded in the root of the directory. Any ideas on how to get this to

Problems With CFGRID Display

2000-07-19 Thread Double Down
Having a problem displaying CFGRID in Netscape and in some versions of IE. When the grid loads this error comes up: Applet allaire.controls.cfGridFormApplet class allaire.controld.cfGridFormApples could not be loaded. CFIDE is loaded in the root of the directory. Any ideas on how to get this to

Re: CF 5.0 and misc questions...

2000-07-19 Thread Justin MacCarthy
My advice to you is to work with what you have, without expecting the 5.0 release to solve all your problems. Remember, CF is designed to do one thing, and one thing only - generate HTTP response data. If you want to do something else, like run programs at arbitrary times, you can do it in

RE: List slowdown problems and solutions

2000-07-19 Thread Dave Watts
Can we get this list to provide snappy answers or do I have to unsubscribe in disgust? 1. "No, you're free to unsubscribe any way you want; it doesn't have to be in disgust." 2. "If you want more snappy answers, just keep asking stupid questions." 3. "Gee, I didn't even know they had

CFIF question...

2000-07-19 Thread Gary McNeel, Jr.
can you use BETWEEN or maybe IN in a cfif? ex: cfif userseccode BETWEEN 1 AND 3do something/cfif ex: cfif userseccode IN (1, 2, 3)do something/cfif Is there a better, faster way to do this? Thanks. Gary McNeel, Jr. Project Manager - DAC-Net, Research Graduate Studies Rice University -

Re: CFIF question...

2000-07-19 Thread Erki Esken
cfif ListFind("1,2,3", userseccode)do something/cfif Erki - Original Message - From: "Gary McNeel, Jr." [EMAIL PROTECTED] To: "Cf-Talk" [EMAIL PROTECTED] Cc: "theCrewOnly" [EMAIL PROTECTED] Sent: Wednesday, July 19, 2000 7:07 PM Subject: CFIF question... can you use BETWEEN or maybe

simple ques

2000-07-19 Thread Robert Orlini
We are using a CFM file as our default or opening page for our web site (default.cfm). We have IIS 4.0 w/FP 2000 installed. If the CF Service goes down for any reason I believe a: "Error Diagnostic Information An error occurred while attempting to establish a connection to the service." would be

RE: cfhttp and SSL - A new twist??

2000-07-19 Thread Steve Bernard
The core of the problem is that HTTPS was not supported until 4.5. Typically, if something doesn't work on one rev. of a product but, does work on a later version I would spend the time to read the changelog. Steve -Original Message- From: Bud [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

Re: simple ques

2000-07-19 Thread Matt Taylor
Go to MMC (Microsoft Management Console) select properties for the website you are configuring, document tab, add a mapping for .htm or .html files. Be aware IIS will follow the hierarchy you select. So if you want the CFM file to always be looked for first and the .htm to be for fail-over

Re: House Of Fusion

2000-07-19 Thread Michael Dinowitz
It looks like the DNS/MX records. This seems to be the case not just today, but for the last few days (which explains some of the lack of list posts). I've already called into FusionFX and they were working on it already. I'm not seeing a problem getting to the site from where I work, but the

OT: CGI Question

2000-07-19 Thread Kevin Queen
This has been bugging me for two days and I can not fond any reference materials. I am attempting to output a table structure to a cfml file using the following CGI command: print FILENAME "Yadda, yadda\n"; it looks like this in the code: print NEWFILE "tr\n"; print NEWFILE " td

Spooled mail piling up

2000-07-19 Thread John Fix 3rd
I installed Forums on my server, and since then I've noticed that outgoing mail accumulates in the /spool folder. Any idea why the mail would sit for hours in that folder before going out? It appears that it might even sit until I do a restart of the CF Application Server program. Thanks!

RE: simple ques

2000-07-19 Thread Jeremy Allen
-Original Message- From: Matt Taylor [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 19, 2000 11:37 AM To: [EMAIL PROTECTED] Subject: Re: simple ques Go to MMC (Microsoft Management Console) select properties for the website you are configuring, document tab, add a mapping for

setting an href to call a javascript function

2000-07-19 Thread Brian P. Doyle
Hi, I'm trying to use CFTree selections to populate a select box. Currently the form that has the select box has an add button, this button opens the cftree in a pop-up window. I'm trying to do something along the lines of: href="javascript:window.open()" as an example (I don't want it to

Re: simple ques

2000-07-19 Thread Matt Taylor
Good point(s)But I don't think he was inferring that CF is having problem, just trying to provide for some fault tolerance. With your points taken into consideration, it think it is a valid issue that should have a readily available solution, perhaps provided by Allaire

Re: setting an href to call a javascript function

2000-07-19 Thread Don Vawter
Are you successfully putting in a non js href, but failing on js href, or is it failing even on non js href too? - Original Message - From: "Brian P. Doyle" [EMAIL PROTECTED] To: "CF-talk" [EMAIL PROTECTED] Sent: Wednesday, July 19, 2000 12:35 PM Subject: setting an href to call a

RE: simple ques

2000-07-19 Thread Robert Orlini
Yes the scenario is that the CF service goes down. I believe I will receive an error even if the default page is setup with default.htm as second in line as specified in the MMC console (I tested it). I don't think IIS is smart enough to realize the .cfm page is not working or am I wrong? If

RE: List slowdown problems and solutions

2000-07-19 Thread Len Conrad
Quite apart from the serious DNS setup pb's HouseOfFusion.com had when it was contactable, this is not even funny: DNS Expert Detailed Report for houseoffusion.com 19/07/00, 20:58, using the analysis setting "Thorough"

Re: List slowdown problems and solutions

2000-07-19 Thread Dave Hannum
OK - educate me here (because I am not a network guy). If their (FusionFX, HOF) DNS is messed up or any other setting, why can others of us access them? Sounds like a POP problem to me. For example, I have a client. We moved his domain name from a server in WV to HostPro in Calif. Now, from

Re: (Admin - OT) outlook security hole

2000-07-19 Thread Dave Hannum
MS sent out a security bulletin this AM with a link to the patch . . . see below: Dave The following is a Security Bulletin from the Microsoft Product Security Notification Service. Please do not reply to this message, as it was sent from an unattended mailbox.

Re: List slowdown problems and solutions

2000-07-19 Thread Michael Dinowitz
Try getting to www.houseoffusion.com. It seems to be offline, but going to www.fusionauthority.com (same box) is working. Same for the list. The DNS for HoF should be 140 with the email server at the same address. 141 is FA. currently, HoF is (was) mapped to 141 and is being moved (propagated

RE: CF Chat Application

2000-07-19 Thread Nille af Ekenstam
I have yet to find a good CF-based chat program. Unfortunately, these programs rely on auto page refreshes and can be quite annoying. Dave Watts skrev: If you're expecting to find a CF-based chat program which doesn't rely on automatic page refreshes, don't hold your breath! That's outside

RE: CF Chat Application

2000-07-19 Thread Nille af Ekenstam
I have yet to find a good CF-based chat program. Unfortunately, these programs rely on auto page refreshes and can be quite annoying. Dave Watts: If you're expecting to find a CF-based chat program which doesn't rely on automatic page refreshes, don't hold your breath! That's outside the

RE: CF Chat Application

2000-07-19 Thread Nille af Ekenstam
I have yet to find a good CF-based chat program. Unfortunately, these programs rely on auto page refreshes and can be quite annoying. Dave Watts: If you're expecting to find a CF-based chat program which doesn't rely on automatic page refreshes, don't hold your breath! That's outside the

Re: List slowdown problems and solutions

2000-07-19 Thread paul smith
Because DNS changes (for example, screwups) arrive at different parts of the Internet at different times. best, paul At 03:22 PM 7/19/00 -0400, you wrote: OK - educate me here (because I am not a network guy). If their (FusionFX, HOF) DNS is messed up or any other setting, why can others of

RE: CF Chat Application

2000-07-19 Thread Nille af Ekenstam
ps, never thought my first post made it to the list so I typed up another one. well i liked the second one better anyway ,-) //nille -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To

RE: CF 5.0

2000-07-19 Thread lsellers
I could have sworn I saw someone mention Cold Fusion 5.0, does anyone have it? How would you rate it against 4.5? Anything new or spectacular? What I'm kind of curious about is will the c++ cfx tags work with the java-based engine? Anyone know if they're supposed to? --min

RE: CF Chat Application

2000-07-19 Thread lsellers
That's not entirely true. You could always write a script that keeps serving a page and never tells the browser that it is done so the browser keeps loading it while content is being added. ...you just can't do streaming http in CF is the only problem. You'd have to use perl or asp. --min

Re: List slowdown problems and solutions

2000-07-19 Thread Len Conrad
Try getting to www.houseoffusion.com. It seems to be offline, but going to www.fusionauthority.com (same box) is working. Same for the list. The DNS for HoF should be 140 with the email server at the same address. 141 is FA. currently, HoF is (was) mapped to 141 and is being moved (propagated

RE: CF Chat Application

2000-07-19 Thread Dave Watts
If you're expecting to find a CF-based chat program which doesn't rely on automatic page refreshes, don't hold your breath! That's outside the scope of what CF, or any other web application server for that matter, can do. That's not entirely true. ... You could always write a script

RE: CF Chat Application

2000-07-19 Thread Nille af Ekenstam
lsellers skrev: That's not entirely true. You could always write a script that keeps serving a page and never tells the browser that it is done so the browser keeps loading it while content is being added. ...you just can't do streaming http in CF is the only problem. You'd have to use

RE: CF 5.0

2000-07-19 Thread Steve Bernard
As long as there is a methodology for accessing .dll's the language used to develop the CF engine shouldn't matter. Steve -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

Re: List slowdown problems and solutions

2000-07-19 Thread Len Conrad
Michael, I'm getting bounced mails for fusionfx, so if you know how to get this msg to Aaron and/or Greg, please do. Len === If you guys are working on the houseoffusion.com zone, please go ahead and fix this longstanding pb that show up on my mail gateway's console:

Re: Newbie Question

2000-07-19 Thread Sean Renet
I format the report using whatever CF I need then use activepdf toolkit to generate the printable version. If it is some financial report where the data must be manipulated I have the report downloadable as an excel document. - Original Message - From: "Gieseman, Athelene" [EMAIL

RE: CF Chat Application

2000-07-19 Thread Nille af Ekenstam
Nille: If you're expecting to find a CF-based chat program which doesn't rely on automatic page refreshes, don't hold your breath! That's outside the scope of what CF, or any other web application server for that matter, can do. That's not entirely true. ... You could always

Re: CF 5.0

2000-07-19 Thread Adrian Cooper
- Original Message - From: "Gavin Myers" [EMAIL PROTECTED] Sent: Wednesday, July 19, 2000 3:08 PM I could have sworn I saw someone mention Cold Fusion 5.0, does anyone have it? How would you rate it against 4.5? Anything new or spectacular? Hmm.. just before I go out and upgrade to

cfhttp.responseheader

2000-07-19 Thread Craig M. Rosenblum
I'm having trouble getting those to work... any ideas? ! This example shows the use of CFHTTP to pull information from a web page. --- HTML HEAD TITLE CFHTTP

RE: List slowdown problems and solutions

2000-07-19 Thread Chris Evans
There is always the option of using the Fuseware newsgroups. I set up the DNS, so I know its not right :). Where are you getting this DNS info, Len? I have DNS issues as well. Chris Evans [EMAIL PROTECTED] http://www.fuseware.com -Original Message- From: Len Conrad [mailto:[EMAIL

joining two tables from different databases/datasources

2000-07-19 Thread Nagai, Paul
Howdy, I want to join two tables from different databases/datasources. Both databases are on the same SQL Server. Both databases are Cold Fusion datasources. The following select returns the correct data in SQL Server Query Analyzer. SELECT * FROMTable1 JOIN Database2.dbo.Table2

OT: Liability Clauses

2000-07-19 Thread Gregory Gooden (Annex)
I have an interesting question for those so inclined to answer. For any development we've ever done (for any scope of project), we've always insisted on a development contract, that contains our liability clause as well. As with the industry standard, we've always put a clause that limits our

Re: cgi.path_info under apache

2000-07-19 Thread Joseph Christina
hi, I'm having similar problem. We're using iPlanet on a Solaris platform. CGI.PATH_INFO is blank and required a kludge to get the security application working. Do you have the URL for the forum article explaining the workaround? I can't find it at Allaire forums. Thanks, Joseph Christina,

Re: CFIF question...

2000-07-19 Thread David Shadovitz
Putting aside the "better, faster" part, searching the CF docs for "operators" reveals that CF supports {IS, IS NOT, CONTAINS, DOES NOT CONTAIN, GREATER THAN, LESS THAN, GREATER THAN OR EQUAL TO, LESS THAN OR EQUAL TO}. All but the two CONTAINS and its opposite have abbreviations. For "BETWEEN"

Where in the world are we

2000-07-19 Thread Parker, Kevin
Gee we encounter some unusual stuff on this list, such is the power and flexibility of CF. So here's something a little out of the ordinary that I hope someone may be able to provide some advice on. I'm putting together an app that allows entry of a grid reference (latitude and longitude) into a

Re: CF 5.0....4.5 problems

2000-07-19 Thread Julie McKellar
We have two current issues that are causing us extreme problems after upgrading from 4.0 to 4.5. 1) CFHTTP -- two programs completely don't work and have had Allaire support with one of our developers for days now. 2) CFMAIL -- totally bogged down. The only way I can get the email to run is

Re: CF 5.0....4.5 problems

2000-07-19 Thread Julie McKellar
Third party component for a work around on a cold fusion tag that worked in 4.0 and doesn't work in 4.5 ?? Sorry...I am of the opinion that CFHTTP and CFMAIL are pretty serious tags that Allaire needs to get working in the 4.5 version of their softwarewe didn't pay thousands of dollars to