https cfform action

2001-01-14 Thread Dian Oktosoma
Help me, ..again. I have a form in a "not secure" page and cfinput text inside it (name="text1"). Action for this form refers to a HTTPS page (https://blablabla>). When someone press submit button for the first time, the browser will give information about entering a secure page. But after tha

RE: sessiontimeout

2001-01-14 Thread Scott Wolf
Here's the code that I use. Hope it works for you: StructClear(Session); Scott Wolf Goodfriend Computer Training -Original Message- From: Jay Patton [mailto:[EMAIL PROTECTED]] Sent: Friday, January 12, 2001 7:37 PM To: CF-Talk Subject: sessiontimeout quick question. in my client se

RE: how to retrieve excel data and to put into DB

2001-01-14 Thread Dylan Bromby
i have a client who does this all the time. the tool i built works like this: 1) They upload an Excel file for which a DSN *already exists* 2) I read the Excel file and populate SQL with the content 3) I use CFUSION_DISABLE_CONNECTIONS([DSN],1) to force CF to release the lock on the Excel file 4)

RE: Fuseware?

2001-01-14 Thread Conrad, Christopher
I can help you ... I don't see you in the support queue. You can send your question to me directly. Thanks, Christopher -Original Message- From: W Luke [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 14, 2001 3:37 PM To: CF-Talk Subject: Fuseware? Is anyone able to get in contact wi

Re: Strange Client Variables problem

2001-01-14 Thread Bud
On 1/14/01, W Luke penned: >I've had this on IIS and O'Reilly systems, but it's cleared up after a few >minutes. > >:o/ > >Will I set up a datasource for client storage and forget to specify it when I uploaded a new application.cfm. So hopefully, it's a problem with the client data writing to t

Re: Comparing 2 Lists in a query

2001-01-14 Thread Jon Hall
Looks decent to me, depends on how many records you get back though. One note, CONTAINS is faster than LIKE in sql, if your query is taking too long. jon - Original Message - From: "Patric Stumpe" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Sunday, January 14, 2001 5:30 PM

Re: Comparing 2 Lists in a query

2001-01-14 Thread Patric Stumpe
Arrgh, forgot to paste my actual code... SELECT * FROM hotels WHERE 1 = 1 AND name LIKE '%#form.name#%' AND plz LIKE '#form.plz#%' AND ort LIKE '%#form.ort#%' ORDER BY plz <---snip...> Name Ort #name# #ort

Re: Comparing 2 Lists in a query

2001-01-14 Thread Patric Stumpe
Well Jeff, for the meantime i solved the problem with the help of what Aaron mentioned. First I searched for all hotels matching the search-forms simple input-fields. Then when outputting the data I matched the submitted form against every hotels criteria-list with a loop. It works but i think it

Re: Strange Client Variables problem

2001-01-14 Thread W Luke
I've had this on IIS and O'Reilly systems, but it's cleared up after a few minutes. :o/ Will > OK, is this me? I've been using this code in all my applications to > delete client variables. > > > > > > > All of a sudden, I'm getting this error (On Intermedia of course. > Where I generally

Fuseware?

2001-01-14 Thread W Luke
Is anyone able to get in contact with Fuseware.com? Several emails to them have been ignored over the past few months. Will -- [EMAIL PROTECTED] -=- www.lukrative.com Classifieds -=- www.localbounty.com ~~ Structure your ColdFusion code with Fuse

RE: looking for a certain custom CF tag

2001-01-14 Thread Russel Madere
You can use the CFX_Image tag or the CFX_ImageInfo tag to get this information. Lewis Sellers' website at http://www.intrafoundation.com has both available for download. Russel Russel Madere, Jr. Senior Web Developer ICQ:

RE: CF web development method

2001-01-14 Thread Russel Madere
Whoa! Could this open of a can worms! That said, I persoanlly prefer a modification of the Fusebox methodology. I throw in a little of the Top Down methodology I learned when I was developing in FORTRAN. Please don't ask me to describe my method, as it is currently in flux. I do, however, lik

RE: ColdFusion File Handling

2001-01-14 Thread Russel Madere
I have a different question about the method CF uses for file transfers on Windows NT. When I copy over a network, I know Windows NT reads the file to the computer initiating the command and then copies the file to the destination. Does CFFILE on NT do the same thing? Also, does CFCONTENT read

RE: sessiontimeout

2001-01-14 Thread Russel Madere
Try using the StructDelete(Session) function. Russel Russel Madere, Jr. Senior Web Developer ICQ: 5446158 http://www.TurboSquid.com Some days you eat the bear; some days the bear eats you. ==

RE: Comparing 2 Lists in a query

2001-01-14 Thread Jeff Beer
Hi Patric, You might be better off by creating lookup tables for your criteria, and performing the search using a join, rather than storing the lists of matching criteria. Simply make a table with hotel_ID (whatever the primary key is) and the primary key of the criteria item. It might look lik

Re: Help

2001-01-14 Thread CT, Loo
Jeff, FYI, I have no problem doing that(Whether upper or lower case) on one of the server running NT4 with SP4. The problem was on Windows 2000 professional. Looct - Original Message - From: <[EMAIL PROTECTED]> To: CF-Talk <[EMAIL PROTECTED]> Sent: Saturday, January 13, 2001 8:08 PM Sub

Strange Client Variables problem

2001-01-14 Thread Bud
OK, is this me? I've been using this code in all my applications to delete client variables. All of a sudden, I'm getting this error (On Intermedia of course. Where I generally have these problems) Parameter 1 of function DeleteClientVariable which is now "'0' FIELDNAMES" must be a synta

Re: Comparing 2 Lists in a query

2001-01-14 Thread Patric Stumpe
Well, it's not the elegant way - but i'll give it a try. I hope it works. Thanks Aaron. Patric - Original Message - From: "Aaron Johnson" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Sunday, January 14, 2001 6:42 AM Subject: RE: Comparing 2 Lists in a query > -BEGIN