Setting a Cookie and Redirecting the Browser

2000-08-08 Thread Benjamin S. Rogers
Has anyone come up with a plausible way of setting a cookie and redirecting the browser from within a ColdFusion 4.01 template using HTTP headers (as opposed to META tag redirects)? Specifically, we're trying to redirect an image call from the browser. The image fails to load when it comes upon a

RE: Multiple value Select

2000-08-08 Thread Gieseman, Athelene
No luck. I think there's a problem in that the listcontains isn't finding any matches. I can't figure out why. I display the previously selected items in another part of the form and it is identical to the options in the database. There is a comma separating the selected items. For example, t

RE: I need a host. Intermedia testimonials

2000-08-08 Thread Kevin Langevin
I've actually just built a rinky-dink server (AMD K6-2 350 w/160 MB Ram, a 13 GB 7200RPM IDE HD and an excellent 10/100 NIC, and a friend who's involved with me in the South Florida CFUG colocated it at the company for which he's the CTO. Nice to have those kinds of connections. Anyway, it's all

RE: Any know problems with cold fusion server on Win2k?

2000-08-08 Thread Kevin Langevin
I'm running CF 4.5 on Win2K Advance Server, and I've had virtually NO problems with it. I think the problem with CF Snippets is something that happens to all Win2K installations, because I had the same thing happen. I haven't heard of or experienced any other problems except once in a while, CF

RE: Setting a Cookie and Redirecting the Browser

2000-08-08 Thread Kevin Langevin
Any reason why you don't want to use a META tag refresh to redirect? That's what I always use when I need the cookie to be set. -Kev > -Original Message- > From: Benjamin S. Rogers [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, August 08, 2000 4:18 PM > To: [EMAIL PROTECTED] > Subject: S

RE: I need a host. Intermedia testimonials

2000-08-08 Thread Robert Everland
Well I colocate at a place near me in Orlando FL for $150 month. I get 4 ip addresses with that so I use Virtual Domains it works beautifully. Have a couple remote control utilites if one fails. Best way to go. Bob Everland -Original Message- From: Kevin Langevin [mailto:[EMAIL PROTECTED

RE: Another Stock Grabber out there??

2000-08-08 Thread Chris Straight
Sorry about that the address is http://www.spyonit.com -Original Message- From: Chris Straight [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 08, 2000 12:42 PM To: [EMAIL PROTECTED] Subject: RE: Another Stock Grabber out there?? well this isn't a CF stockgrabber but you might want to

Re: Another Stock Grabber out there??

2000-08-08 Thread Jim Taylor
where is it at? - Original Message - From: "Chris Straight" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, August 08, 2000 4:42 AM Subject: RE: Another Stock Grabber out there?? > well this isn't a CF stockgrabber but you might want to look into it. > basically these

RE: Setting a Cookie and Redirecting the Browser

2000-08-08 Thread Brandon Behrens
Been there, done that. I wound up using a meta tag to refresh the page with a time of 0. That was the only way I could get it to work. Brandon Brandon Behrens The Internet Design Firm 512.451.5225 [EMAIL PROTECTED] http://www.theidf.com -Original Message- From: Benjamin S. Rogers [mai

Sucking in Data!

2000-08-08 Thread Ben Densmore
This is a multi-part message in MIME format. --=_NextPart_000_0009_01C00156.1A3B8F20 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Can anyone tell me the best way or give me some ideas on how to take = data that is in multiple csv files an

FW:

2000-08-08 Thread Bonnie Betts (E-mail 2)
Bonnie E. Betts [EMAIL PROTECTED] 703-344-7057 -Original Message- From: Bonnie Betts [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 08, 2000 4:36 PM To: Cf-Talk (E-mail) Subject: Does anyone know where the url is for the states-country database someone had post a while back? B

RE: Setting a Cookie and Redirecting the Browser

2000-08-08 Thread Benjamin S. Rogers
We can't use a META refresh because the template is being called from an image source. The ColdFusion template makes a few decisions and redirects to the appropriate image. -Original Message- From: Kevin Langevin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 08, 2000 4:31 PM To: [EMAIL

RE: Setting a Cookie and Redirecting the Browser

2000-08-08 Thread Benjamin S. Rogers
Again, we can't use a META refresh. See either of my earlier posts for an explanation as to why this solution will not work for us. FYI: Adding the HTTP header "Refresh" with the works well instead of the META refresh if you'd rather not have a page displayed at all. We found that even with a ti

cfx_cybercash question

2000-08-08 Thread Bud
Hi. I have a client that needs to use cybercash. Does anyone know if the tag at the Developer's Gallery is compatible with the latest version and will work with the mck-3.2.0.7 file that interacts with Cash Register? ONCR has a version 4 out but it's 300 bucks. Anyone tried it? -- Bud Schnee

RE: Setting a Cookie and Redirecting the Browser

2000-08-08 Thread Hinojosa, Robert
Just a thought... You could CFHTTP the content of the desired forwarded page so that the cookie can set. I have done this once, a long time ago, and I remember it working. Hope this helps, Robert Hinojosa WebDeveloper 512.912.3775 [EMAIL PROTECTED] -Original Message- From: Benjamin S

RE: Multiple value Select

2000-08-08 Thread Mark Armendariz
Yo may have a point.. try putting quotes around EditNameQry.PracticeGroup. Plus, if I replace with the Agribusiness option is selected. So I think I'm doing something wrong in how I'm using the second parameter of the ListContains. -Original Message- From: G

Re: Sucking in Data!

2000-08-08 Thread Bud
On 8/8/00, Ben Densmore penned: >Can anyone tell me the best way or give me some ideas on how to take = >data that is in multiple csv files and suck all of it into multiple = >tables in an access database? I'm currently working on a project where I = >need to do this and the people who wrote the D

Re: Sucking in Data!

2000-08-08 Thread Gordon Burns
Ah! I had this same issue. Michael Sheldons CFX tag DelimToQuery works a treat. Very fast. Gordon At 16:31 08/08/00 -0400 Ben Densmore said >This is a multi-part message in MIME format. > >--=_NextPart_000_0009_01C00156.1A3B8F20 >Content-Type: text/plain; > charset="iso-8859

RE: Setting a Cookie and Redirecting the Browser

2000-08-08 Thread Terry Bader
you can also use: location="http://URL"; this help? Terry Bader Web Developer EDO Corp - Combat Systems (757) 424-1004 ext 361 [EMAIL PROTECTED] [EMAIL PROTECTED] icq: 5202487 aim: lv2bounce http://www.cs.odu.

RE: Setting a Cookie and Redirecting the Browser

2000-08-08 Thread Benjamin S. Rogers
Were you able to do this with binary data (a.k.a an image)? We'd prefer not to place the burden of the transaction on ColdFusion, but if it works, then it's a solution. Benjamin S. Rogers Web Developer, c4.net voice: (508) 240-0051 fax: (508) 240-0057 -Original Message- From: Hinojosa, R

Re: Any know problems with cold fusion server on Win2k?

2000-08-08 Thread Christopher S Martin
Okay, thanks. How can we deal with the CFSNippets problem? Is there a website or can you reccomend what to do? - Original Message - From: "Kevin Langevin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, August 08, 2000 16:29 Subject: RE: Any know problems with cold fusion serv

RE: I need a host. Intermedia testimonials

2000-08-08 Thread Dan O'Keefe
-> Well I colocate at a place near me in Orlando FL for $150 month. -> I get 4 ip -> addresses with that so I use Virtual Domains it works beautifully. Have a -> couple remote control utilites if one fails. Best way to go. -> -> Bob Everland -> What is the name of the co-locater? Dan --

RE: Multiple value Select

2000-08-08 Thread Chapman, Katrina
This may be a stupid question but the query EditNameQry is only pulling one value for PracticeGroup. Right? If not I'm sure that when you "view source" you'll see that more than one option is "SELECTED". That will confuse the browser and it will stay on the first option. --K -Original Mes

Re: Setting a Cookie and Redirecting the Browser

2000-08-08 Thread Jake Hileman
That will still let you set the cookie? Also, I'm using cookies for authentication.. once they are authenticated, it sets the cookie and the other pages check for the cookie, if it's not there, it sends them back. Is this a safe way to do things? The whole session, application.cfm thing confuse

RE: Setting a Cookie and Redirecting the Browser

2000-08-08 Thread Hinojosa, Robert
There were images on the page. I'm sure that you won't have any issues requesting a single image. It really isn't a burden if it's the cfhttp is done locally. Hope this helps, Robert Hinojosa WebDeveloper 512.912.3775 [EMAIL PROTECTED] -Original Message- From: Benjamin S. Rogers [mai

RE: Multiple value Select

2000-08-08 Thread Gieseman, Athelene
No. That field would have multiple items in a comma-delimited format. Not even the first option is selected. Athelene -Original Message- From: Chapman, Katrina [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 08, 2000 4:33 PM To: [EMAIL PROTECTED] Subject: RE: Multiple value Select T

Re: How to pipe CF code to a file?

2000-08-08 Thread David Cummins
There are a few ways that come to mind... You could call the page with CFHTTP, and then write the returned contents to a file (moderately ugly). You could use CFSCHEDULE (I think it has a "output to file" option) (moderately ugly). Or, you could write a custom tag to grab the HTML output. Assum

RE: Setting a Cookie and Redirecting the Browser

2000-08-08 Thread Hinojosa, Robert
Secure/Unsecure??? Depends on what content you are serving up. I personally would not authenticate using cookies, because they can be easily manipulated. I use cookies for tracking purposes only and client/session vars for mostly everything else. If the content is "sensitive", I would really

Re: CFMAIL and exchange server

2000-08-08 Thread Howie Hamlin
There's an inherent 1 minute delay in mail sending from CFMail (although in 4.5 you can lower the setting to 15 seconds). Add to that the delay for the mail server receiving and resending the mail and you could have a delay of 15 minutes. Also, CFMail sends mail serially which means that all que

RE: Setting a Cookie and Redirecting the Browser

2000-08-08 Thread Terry Bader
this works for us: - location="http://URL"; alot of in between missing but we have this concept.. Terry Bader Web Developer EDO Corp - Combat Systems (757) 424-1004 ext 361

CFFILE upload gives Error 5 on NT

2000-08-08 Thread Joyce E. Evans
This is a multi-part message in MIME format. --=_NextPart_000_005D_01C00153.6BD972A0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable Hello,=20 I am using the CFFILE tag to upload and move files for an application I = have built and I am r

RE: I need a host. Intermedia testimonials

2000-08-08 Thread Robert Everland III
NetPass.com. They are located in downtown Orlando. Bob -Original Message- From: Dan O'Keefe [mailto:[EMAIL PROTECTED]] Sent: Monday, August 07, 2000 5:34 PM To: [EMAIL PROTECTED] Subject: RE: I need a host. Intermedia testimonials -> Well I colocate at a place near me in Orlando FL for

passing variables from javascript function

2000-08-08 Thread Kim Ahlbrandt
I have a form containing a pulldown menu. I need this form to send the user to a different place according to what they choose. I'm trying to use ONSUBMIT to call a javascript function that will look at the value on the pulldown menu and send a variable containing the url back to the submit

RE: I need a host. Intermedia testimonials

2000-08-08 Thread ron
http://www.communitech.net. 5 redundant upstream providers, dual power grid to building, onsite diesel generator, redundancy out the wazoo. Great web admin tool for virtual server accounts. PlanetAlumni.com colocates there, along with about 30,000 other sites. They're in downtown Kansas City. -R

ABLECOMMERCE

2000-08-08 Thread [EMAIL PROTECTED]
Hello Everyone, Has anyone worked with Able Commerce shopping cart and played with their source code? The catalog of items to be inserted in the shopping application includes some items that will require the person to fill out a form (unique/item), then see what the product will look like based

RE: Hi Guys n Gals! Quick Select box question :)

2000-08-08 Thread Larry Juncker
If I am reading your code right, just change your #lookup.Audit_ID# to #qrySelectRecords.Audit_ID# I am assuming that your query is named qrySelectRecords. Hope this helps H Larry Juncker L Senior Cold Fusion Programmer I Heartland Communications Group Internet Di

Re: cfx_cybercash question

2000-08-08 Thread paul smith
It works with CFWebstore. www.cfwebstore.com best, paul At 04:51 PM 8/8/00 -0400, you wrote: >Hi. I have a client that needs to use cybercash. Does anyone know if >the tag at the Developer's Gallery is compatible with the latest >version and will work with the mck-3.2.0.7 file that interacts w

Re: passing variables from javascript function

2000-08-08 Thread Dick Applebaum
Try this: Web Site Menu About Our Company -Who we are -Our Guarantee -About this Web site -Contact Us Products -Description -Applications -History -Details -Uses FAQs Place an order -Products & Prices -Internet Ordering -Order Form At 5:28 PM -0500 8/8/00,

RE: passing variables from javascript function

2000-08-08 Thread Terry Bader
is also this: and I believe this will work as well: and I think I would use onBlur depending on the application. Terry Bader Web Developer EDO Corp - Combat Systems (757) 424-1004 ext 361

cf-talk@houseoffusion.com

2000-08-08 Thread Alex Puritche
cf-talk, Can somebody help me? I have difficulties trying to validate user's input in cfgrid. In fact I can't understand how I can validate 15 columns with 15 validation rules. Can somebody help me? -- Regards, Alex mailto:[EMAIL PROTECTED]

RE: Setting a Cookie and Redirecting the Browser

2000-08-08 Thread dougn
What about: if cookie exists do analysis to determine image cflocation to image url if cookie does not exist do any analysis cfcontent to distribute the image file This puts a little more load on CF but realistically you're only shipping a few k the first time fro

OT eWebeditPro & CFML

2000-08-08 Thread Dan O'Keefe
Anybody on the list using eWebEditPro and figured out a way to embed CFML within the eWebEditPro editor, save it, and then display the results. I am trying to do something like: In a eWebEditPro editing session: formatted static text.. #phonenum# Some more formatted static text ...

Re: Setting a Cookie and Redirecting the Browser

2000-08-08 Thread Jake Hileman
Good idea mate, very good idea actually. I like that styleee. hehe jake - Original Message - From: "Terry Bader" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, August 08, 2000 6:04 PM Subject: RE: Setting a Cookie and Redirecting the Browser > this works for us: > > >

Re: ABLECOMMERCE

2000-08-08 Thread Angel Stewart
I've used Ablecommerce, and setup an Ecommerce web hosting site with it. That's really what it is great for, if you have a solution you wish to provide a customer, or if you want to provide a service where someone can log in and maintain and configure their own webstore. They can check their ord

Re: CFMAIL and exchange server

2000-08-08 Thread Jim McAtee
Really? What is the one minute delay? I've always gotten mail almost instantly from templates using CFMAIL. (CF 3.x and 4.0.x) Jim -Original Message- From: Howie Hamlin <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Tuesday, August 08, 2000 4:00 PM Subject: Re: CF

Writing STATUSCODE via CFHEADER in CF 4.01

2000-08-08 Thread David Sparkman
Does anyone know how to mimick writing a status code into the header in CF 4.01? Thanks, David Sparkman weberize.com -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit http://www.ho

Re: Listing all variables in a scope

2000-08-08 Thread Russel Madere
Am I being ignored? At 09:55 08.08.2000 -0500, you wrote: >I'm having a mental block right now. I looked in the documentation and in >the archives, but can't find the answer. > >Is there a way to list the values of the variables in the Variables >scope? I know in the Form scope I can use File

Re: Listing all variables in a scope

2000-08-08 Thread Jared Clinton
I'm pretty sure nobody knows the answer Russel. Stop being so paranoid. Russel Madere wrote: > Am I being ignored? > > At 09:55 08.08.2000 -0500, you wrote: > >I'm having a mental block right now. I looked in the documentation and in > >the archives, but can't find the answer. > > > >Is there

Re: CFMAIL and exchange server

2000-08-08 Thread Howie Hamlin
ColdFusion checks the outgoing mail folder every minute...that's what the delay is. In 4.5 you can lower the checking interval to a minimum of 15 seconds. Regards, Howie - Original Message - From: Jim McAtee <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, August 08, 2000 8:3

Re: Listing all variables in a scope

2000-08-08 Thread Russel Madere
That comes from death march hours for 4 weeks straight. But you know, I enjoy my paranoia. Sorry to waste the bandwidth. Russel At 12:11 08.09.2000 +1000, you wrote: >I'm pretty sure nobody knows the answer Russel. Stop being so paranoid. > >Russel Madere wrote: > > > Am I being ignored?

Re: OT eWebeditPro & CFML

2000-08-08 Thread Eron Cohen
Hi Dan, I don't think you're going to be able to do this directly. Unfortunately, ColdFusion won't evaluate cold fusion code that's CFOUTPUT from a database query. The only way around this that I know of is to write the output to a file and then execute the file (I believe you could do this by

Weird CFCONTENT problem with WinProxy

2000-08-08 Thread Eron Cohen
Hi Folks, Does anyone know of any issues with using CFCONTENT to display images for clients browsing through WINproxy? I am using CFCONTENT to display .gif files (banner ads). It works fine when I am not behind a WinProxy server, but when I am the images just don't display. I have even tried u

RE: How to pipe CF code to a file?

2000-08-08 Thread David Gassner
Use the paired custom tag syntax: ...generate your content... In savepage.cfm, put in this code: > -Original Message- > From: David Cummins [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, August 08, 2000 3:05 PM > To: [EMAIL PROTECTED] > Subject: Re: How to pipe CF code to a fi

Re: Listing all variables in a scope

2000-08-08 Thread Joseph Eugene
Hey Russel, What scope variable are you looking for ? Do you just need to see the session variables? #x# This gives you the session variables!!! Hope this helps Joe - Original Message - From: "Russel Madere" <[EMAIL PROTECTED]> To: <[EMAIL PROT

CF & Flash

2000-08-08 Thread Duane Boudreau
Hi All, Does anyone have sample code with Flash sending and receiving data to/from ColdFusion? Thx, Duane Boudreau CFExperts.Com -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

Return Button To Query Results

2000-08-08 Thread Double Down, Inc.
I want to create a form button that will return a person to the query result page without hitting the database over and over. Can anyone help me out with this? Thanks DDINC -- Archives: http://www.mail-archive.com/cf-ta

Re: Return Button To Query Results

2000-08-08 Thread rkeniger
If you just want to be able to go back like when you use the "back" button in the browser, do this: This will cache the query for five minutes. Rob Keniger -- Archives: http://www.mail-archive.com/cf-talk@

RE: I need a host. Intermedia testimonials

2000-08-08 Thread David Gassner
I have one site at Media3 - an intranet-style project management system hosted for a client - and have had very few problems, and NO complaints from my client over the course of about 18 months. > -Original Message- > From: Raymond K. Camden [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, Aug

cffile

2000-08-08 Thread Phim
Hi Everyone, I use CFFILE Tag for delete a file in server , Can we check action from this command ,that delete file successfull or not ? if can not delete a file becasue this file being in use by another process , and it will return error . Can we check action of?. Regards, Phim -

Re: cffile

2000-08-08 Thread Jim McAtee
Use the FileExists() function or the CFDIRECTORY tag to see if the file exists after doing the delete. Jim -Original Message- From: Phim <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Tuesday, August 08, 2000 11:39 PM Subject: cffile >Hi Everyone, > > >I use CFFIL

RE: cffile

2000-08-08 Thread Phim
thanks a lot Jim regards, Phim -Original Message- From: Jim McAtee [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 09, 2000 12:59 PM To: [EMAIL PROTECTED] Subject: Re: cffile Use the FileExists() function or the CFDIRECTORY tag to see if the file exists after doing the delete. Jim

RE: Multiple value Select

2000-08-08 Thread Katrina Chapman
There is your problem. ListFind looks for the element, specified second, in the list, specified first. So what you're doing is searching for a list within a list. You'll probably never find it. What you're doing is this #ListFind(list1, list2)# This will NEVER evaluate to true because it

<    1   2