RE: String ends

2001-12-17 Thread Steve Martin
ListLast(string, *) eq END -Original Message- From: Don Vawter [mailto:[EMAIL PROTECTED]] Sent: 17 December 2001 01:10 To: CF-Talk Subject: Re: String ends len(st) GE 4 and right(st,4) EQ *END (you need to check length because right(st,4) with give an error if length is

Just when you thought the topic of locking was completely exhausted...

2001-12-17 Thread Kay Smoljak
I have a couple of questions about locking. Now, before you groan, I *do* know how I should be locking, where I should be locking, and why. What I am unclear on is exactly what the effects of using different values for timeout and throwontimout. I presume timeout is in seconds; how long should

RE: Just when you thought the topic of locking was completelyexhausted...

2001-12-17 Thread Pascal Peters
The timeout is in seconds. How long it takes to obtain a lock, depends on the other locks in the application, the code in them, the number of usrs on your site, In short: it depends. If throwontimeout = no, CF will just continue executing after the /cflock without generating an error.

session vs request

2001-12-17 Thread list peters
hi, I am trying to decide the best way to deploy an application.. background: multi-language site. Page content pulled from database. I originally had all static text (such as headings) wrapped in a cfif tag. This got really hard to deal with, and wasnt very clean code. solution: at the

Re: session vs request

2001-12-17 Thread Paul Hastings
multi-language site. Page content pulled from database. I originally had all static text (such as headings) wrapped in a cfif tag. This got really hard to deal with, and wasnt very clean code. why not initialize everything (all pages, all languages) into structure(s) based on language

RE: session vs request

2001-12-17 Thread Peter Windemuller
you could use the session and copy it in a request structure variable in the application.cfm with duplicate(). You could do the query to fill the session only if the session variable does not exist, so not at every page. -Original Message- From: list peters [mailto:[EMAIL PROTECTED]]

Re: Just when you thought the topic of locking was completelyexhausted...

2001-12-17 Thread BILLY CRAVENS
So would it simply not access the code within the lock? --- Billy Cravens - Original Message - From: Pascal Peters [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, December 17, 2001 5:49 AM Subject: RE: Just when you thought the topic of locking was completelyexhausted...

RE: Just when you thought the topic of locking wascompletelyexhausted...

2001-12-17 Thread Pascal Peters
Yes -Original Message- From: BILLY CRAVENS [mailto:[EMAIL PROTECTED]] Sent: maandag 17 december 2001 15:18 To: CF-Talk Subject: Re: Just when you thought the topic of locking wascompletelyexhausted... So would it simply not access the code within the lock? --- Billy Cravens -

BrainFART: CFQuery conditional excecution

2001-12-17 Thread Richard L Smith
Hello, I trying to get this cfquery to run based on what link the user clicks, i.e. if the user clicks somepage.cfm?SubCategory1=#SubCategory1# then the first part of the WHERE should execute else the the OR should execute. I have tried CFQueryParam to no avail, here is the code I am using so

RE: BrainFART: CFQuery conditional excecution

2001-12-17 Thread Steve Martin
You mean like this: cfquery name=qCart datasource=dsMain dbtype=ODBC SELECT ItemName, BrandName, RetailEach, RetailUnit, UnitSize, DetailedDescription, ItemNumber, MainCategory, SubCategory1, SubCategory2 FROM MasterItemTable WHERE 0=0 cfif

RE: BrainFART: CFQuery conditional excecution

2001-12-17 Thread Pascal Peters
cfquery name=qCart datasource=dsMain dbtype=ODBC SELECT ItemName, BrandName, RetailEach, RetailUnit, UnitSize, DetailedDescription, ItemNumber, MainCategory, SubCategory1, SubCategory2 FROM MasterItemTable WHERE 0 = 0 cfif

RE: BrainFART: CFQuery conditional excecution

2001-12-17 Thread Aaron Cooper
try changing your isdefined(#SubCategory1#) to isdefined(SubCategory1) also, it looks like you're going to get an error anyway - if the elseif part of your block gets run, you'll have a sql statement which reads something like: SELECT ... FROM ... OR ... which will throw an error.

RE: BrainFART: CFQuery conditional excecution

2001-12-17 Thread Pascal Peters
I was to quick in replying: IsDefined(Category1) ... IsDefined(Category2) -Original Message- From: Pascal Peters Sent: maandag 17 december 2001 16:29 To: CF-Talk Subject: RE: BrainFART: CFQuery conditional excecution cfquery name=qCart datasource=dsMain dbtype=ODBC

Re: BrainFART: CFQuery conditional excecution

2001-12-17 Thread Richard L Smith
Yep, That't the one, knew it was something simple! Thanks.. - Original Message - From: Steve Martin [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, December 17, 2001 10:26 AM Subject: RE: BrainFART: CFQuery conditional excecution You mean like this: cfquery name=qCart

Certificate expired?

2001-12-17 Thread Ian Lurie
Just started getting a 'certificate expired' warning when you try to download the CFTREE applet on all of our CF sites, on several different servers. Anyone else seeing this? Ian Portent Interactive Using Process, Design and Content to create great web sites since 1995 Consulting, design,

RE: Certificate expired?

2001-12-17 Thread Garza, Jeff
Yup... Me too. If you click through the alert, the applet will still load... Thankfully I'm only using It internally for some admin functions Jeff Garza Lead Developer/Webmaster Spectrum Astro, Inc. 480.892.8200 [EMAIL PROTECTED] http://www.spectrumastro.com -Original Message-

RE: Certificate expired?

2001-12-17 Thread Ian Lurie
Yup, it still works, but that's not keeping all my clients from calling. Did Macromedia drop the ball on this? Ian -Original Message- From: Garza, Jeff [mailto:[EMAIL PROTECTED]] Sent: Monday, December 17, 2001 7:47 AM To: CF-Talk Subject: RE: Certificate expired? Yup... Me too. If

Hello everyone.. question on converting a tag

2001-12-17 Thread Troy Montour
Hello, I'm trying to convert an asp page to CF and not sure which tag to use for the ASP split tag any one have any idea's?? Thanks for your help Troy Montour ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ:

RE: Hello everyone.. question on converting a tag

2001-12-17 Thread Garza, Jeff
Try the listToArray() function. This will take a delimited list and convert it to a one dimensional array. Jeff Garza Lead Developer/Webmaster Spectrum Astro, Inc. 480.892.8200 [EMAIL PROTECTED] http://www.spectrumastro.com -Original Message- From: Troy Montour [mailto:[EMAIL

Re: Certificate expired?

2001-12-17 Thread Marius Milosav
Funny that you mention that. 20 min ago we received calls from some of our customers with the same issue. It seams that it is a CF5 issue. Also related to the CFtree new behavior we found the following: 1)in CF4.x the treeview had default white background in CF5 with default settings (lookAndFeel

Re: Hello everyone.. question on converting a tag

2001-12-17 Thread Troy Montour
perfect.. thats what I needed thanks. Thanks Troy - Original Message - From: Garza, Jeff [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, December 17, 2001 9:58 AM Subject: RE: Hello everyone.. question on converting a tag Try the listToArray() function. This will take a

Bug I think

2001-12-17 Thread David Brown
Server Product ColdFusion Server Version 4, 5, 1, SP2 Edition Professional Has anyone see this? I am trying to find the firstdayofmonth(date) and then find what dayofweek(FirstDayofMonth(date)) is. For example: cfset firstday = FirstDayofMonth(12/17/2001) cfset weekday =

RE: Bug I think

2001-12-17 Thread Steve Martin
True, but it isn't anything that you would normally do so there isn't really anything to worry about there. -Original Message- From: David Brown [mailto:[EMAIL PROTECTED]] Sent: 17 December 2001 16:12 To: CF-Talk Subject: Bug I think Server Product ColdFusion Server

RE: Bug I think

2001-12-17 Thread Garza, Jeff
This is how that function is supposed to operate. Firstdayofmonth() will return a julian date (day of the year). Dayofweek() requires a full date (mm-dd-). Think of it this way, how would dayofweek() know what year it is from a julian date? What are you trying to accomplish from this?

RE: Bug I think

2001-12-17 Thread Christopher Olive
it's because you're passing an integer (335) to the dateformat function. it doesn't recognize that as a valid date, so gives the default date. christopher olive, cto, vp of web development cresco technologies, inc 410.825.0383 http://www.crescotech.com -Original Message- From: David

Re: Bug I think

2001-12-17 Thread David Brown
I would like to get the first date of month(date). I want the first date of month to do a dateadd in my recurring calendar app. - Original Message - From: Garza, Jeff [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, December 17, 2001 11:17 AM Subject: RE: Bug I think This

RE: session vs request == Multi-language site

2001-12-17 Thread Laure Lunot
Concerning Multi-language web site, can some of you give your experience on how to build such a site (for exemple a site in english, french, german). Which solution do you prefer to translate the content: Using structures in session variables, parts of text translated into fusebox-files,

RE: Certificate expired?

2001-12-17 Thread Ian Lurie
Not to be a whiner, but geez, Macromedia, help us out here? -Original Message- From: Marius Milosav [mailto:[EMAIL PROTECTED]] Sent: Monday, December 17, 2001 8:04 AM To: CF-Talk Subject: Re: Certificate expired? Funny that you mention that. 20 min ago we received calls from some of

test list

2001-12-17 Thread Michael Dinowitz
Anyone who wants to help out with a new list system I'm working on, please go to http://www.houseoffusion.com/cf_lists/ and sign up. The list is [EMAIL PROTECTED] and its using some new features such as multiple posting addresses and variable digests. Your feedback will determine what new

Re: Bug I think

2001-12-17 Thread Jim McAtee
cfset somedate = 12/17/2001 cfset firstofmonth = CreateDate(Year(somedate), Month(somedate), 1) Jim - Original Message - From: David Brown [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, December 17, 2001 9:46 AM Subject: Re: Bug I think I would like to get the first

CFQUERY

2001-12-17 Thread Tyler Clendenin
Is there a way to do multiple delete queries in one cfquey tag. and I need to surround it in a transaction. How can I do this? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm

RE: Bug I think

2001-12-17 Thread Garza, Jeff
Take the date that is passed and set the day to 1... CFSCRIPT myDate = now(); FirstDayofMonth = CreateDate(year(myDate), month(myDate), 1); /CFSCRIPT If someone else has a better way I'm open... Jeff Garza Lead Developer/Webmaster Spectrum Astro, Inc. 480.892.8200 [EMAIL PROTECTED]

RE: Excuting stuff on the server

2001-12-17 Thread Ron Hornbaker
Troy, Hey, that code looks vaguely familiar. :) Thanks for not posting all of it to the list. Try the cfexecute tag combined with the adduser and ldaper executables. Our SafeExec object is an ASP-version of cfexecute (safe because it allows executions on only one specified directory). Ron

Any known issues with cfhttp?

2001-12-17 Thread Kola Oyedeji
Hi I am using cfhttp to grab content from another site. I've never used it much but I've seen numerous posts on this list and others regarding alternatives. Are there any known issues or problems I should know about and if so then what other options/solutions exist? Thanks in advance Kola

Re: Excuting stuff on the server----- NM ISP thru a curve ball at me.

2001-12-17 Thread Troy Montour
Thanks if you were looking at this but the ISP thru a curve ball at me and are moving the mail server on me so I won't be able to do what I wanted. Troy - Original Message - From: Troy Montour [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, December 17, 2001 11:24 AM

RE: CFQUERY

2001-12-17 Thread Aidan Whitehall
Is there a way to do multiple delete queries in one cfquey tag. and I need to surround it in a transaction. How can I do this? No, but if you supply a where clause, you can delete everything from one table in one go (and if you have cascading deletes, just go for the parent-most records).

Re: Excuting stuff on the server

2001-12-17 Thread Troy Montour
Ron, no problem on not posting it all.. Thats what I figured it was. Troy Montour - Original Message - From: Ron Hornbaker [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, December 17, 2001 11:39 AM Subject: RE: Excuting stuff on the server Troy, Hey, that code

CFXGraphicsServer

2001-12-17 Thread Jay Jennings
Anybody have anything good or bad to say regarding CFXGraphicsServer? (Other than the fact that charging $450 for a localhost version should make TeraTech feel guilty on their way to the bank.) Thanks. jay ~~ This list and all House of Fusion

Re: Excuting stuff on the server

2001-12-17 Thread Alex
read the cfdocs function list. look through the snippets directory for examples On Mon, 17 Dec 2001, Troy Montour wrote: Hello everyone I have a snag since I have never done this my self before. but I'm wondering what I would use in CF to do this same process?? Set HKSI =

Re: CFXGraphicsServer

2001-12-17 Thread Michael Smith
I too would be interested in what people have to say about our CFXGraphicsserver http://www.cfxgraphicsserver.com/ graphing add in for CF. I will say that unlike CFGRAPH that comes with CF5 it has a lot more graph types and features and will work with CF 4 as well. We have greatly improved the

RE: CFXGraphicsServer

2001-12-17 Thread Philip Arnold - ASP
Anybody have anything good or bad to say regarding CFXGraphicsServer? (Other than the fact that charging $450 for a localhost version should make TeraTech feel guilty on their way to the bank.) Why should the localhost NOT cost a whack, considering it does shed-loads more than CFGraph Think

Re: CFQUERY

2001-12-17 Thread Tyler Clendenin
what is a cascading delete? - Original Message - From: Aidan Whitehall [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, December 17, 2001 12:45 PM Subject: RE: CFQUERY Is there a way to do multiple delete queries in one cfquey tag. and I need to surround it in a

WOT: Cryptogram

2001-12-17 Thread Don Vawter
I got bored last night and wrote a script to work with cryptograms. If you like to waste time you are free to play with it. I have over 300 quotes on it. (Sorry not NS 4 compatible. I WASN'T that bored) http://www.vawter.com/crypto.cfm ~~ Your

Re: CFXGraphicsServer

2001-12-17 Thread Stephen Moretti
The new manual is probably worth the $450 dollars on its own My postman was not happy the day it wound up in his deliveries. :o) Here's an idea of how much difference there is between CFX_GraphicsServer and CFGraph: There are 405 pages in the manual for CFX_GS; pages 143 to 392 contain the

RE: CFQUERY

2001-12-17 Thread Ken Wilson
Is there a way to do multiple delete queries in one cfquey tag. No Actually, multiple deletes/inserts/updates within one query tag do work whether it's intended to or not. Just stick the seperate SQL statements right in there and go for it. Now, anybody know if this is intended or just an

RE: CFQUERY

2001-12-17 Thread Ben Forta
It's intended, kind of. CFQUERY does not really care what the statement is (or if it is even legal). It just passes it to ODBC (or whatever data source is being used) for processing. So, if the drivers and databases support it then you can do it, and if not then not. --- Ben -Original

RE: CFXGraphicsServer

2001-12-17 Thread Ron Anderson
Nothing like hearing from the stockholders :) -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED]] Sent: Monday, December 17, 2001 11:36 AM To: CF-Talk Subject: Re: CFXGraphicsServer The new manual is probably worth the $450 dollars on its own My postman was not

OT: New IE Hole Info!

2001-12-17 Thread Justin Hansen
FYI.. IE 5.5 and 6 users may want to install this new patch IMMEDIATELY. According to Microsoft (http://www.microsoft.com/technet/treeview/default.asp?url=/technet/security /bulletin/MS01-058.asp) this fixes a critical hole in IE that may allow an attacker to run any code they wish by

Re: New IE Hole Info!

2001-12-17 Thread Jon Hall
Heh, yes a very bad security problem...the problem is that the patch doesn't totally fix the problem. Also the patch does not fix Outlook Express either. See Bugtraq posting today... jon - Original Message - From: Justin Hansen [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

Listing MP3 files and alowing either Download or Run

2001-12-17 Thread Brunt, Michael
I am trying to enable listing of MP3 files in two directory structures (with sub directories for different genres) on two different hard drives on the same server. IIS and ColdFusion are running on the same server as the MP3 directory structures. What I want to do is allow either downloading of

EASY QUESTION

2001-12-17 Thread Jason Green
OK.I'm having one of those days I am creating a csv page on the fly and i'm wanting it to downloadhow do we do that again? I've done this before, but i just can't think of how i did it. IT's MONDAY! thanks for the help. jason

fusebox ?

2001-12-17 Thread Douglas Brown
I am needing help on returnfuseaction, this is my first use of the tag and I get an error when trying to use it. I may be using it incorrectly. Error Diagnostic Information An error occurred while evaluating the expression: #returnURL#/#caller.fusetoken# Error near line 27, column 22.

Re: Listing MP3 files and alowing either Download or Run

2001-12-17 Thread Jerry Johnson
does in the client browser mean streaming or downloaded first? If you want to stream, I have set up a streaming jukbox before using icecast/winamp. Give it a try http://www.icecast.org/faq.html Jerry Johnson [EMAIL PROTECTED] 12/17/01 02:05PM I am trying to enable listing of MP3 files in

Re: Source Control and Your Dog

2001-12-17 Thread Chris Norloff
Microsoft's Visual Source Safe brought our development to its knees, so I understand where you're coming from. We switched to PVCS because it's our customer's choice. It's more clunkly that VSS, but it is robust - something VSS is most definitely not. And it does support remote developers-

Re: Listing MP3 files and alowing either Download or Run

2001-12-17 Thread Jim McAtee
Do you need to do this across the Internet or just across your LAN? On the lan, file access works well, effectively streaming the content. For example: file://MYSERVER/Jazz/Joe Henderson/lush life.mp3 Jim - Original Message - From: Brunt, Michael [EMAIL PROTECTED] To: CF-Talk [EMAIL

RE: Listing MP3 files and alowing either Download or Run

2001-12-17 Thread Brunt, Michael
We need to do it across the Internet, as you say on the LAN it runs OK. We run a service providing digitally converted client music (from their own audio sources) for their own events and want to give them Internet access to their own files after the event. Mike Brunt Webapper

RE: Listing MP3 files and alowing either Download or Run

2001-12-17 Thread Rick Osborne [Mojo]
I set up a music server for our Intranet a few months ago and wrote a CFX tag and a really quick-n-simple browser interface for it. (For those whom using a file interface was too difficult. :p~~~ ) It uses IceCast running on a Linux server, but it could just as easily use NFS or SMB or

IN condition... help?

2001-12-17 Thread Paul Ihrig
ok i must be missing something, so if you can see the problem i would appreciate it i am not able to view the out put of a cfloop query, but can see the ids output? cfquery name=rs_pc2 datasource=Project_Set_Up2 dbtype=ODBC SELECT Profile_Code2, Profile_Name2 FROM tbl_Profile_Codes_2 WHERE

RE: Listing MP3 files and alowing either Download or Run

2001-12-17 Thread Jerry Johnson
Well then, I'd say streaming they DON'T need. More like just a download center to allow them access to their files. And depending on the size/length of these audio clips, maybe a dl/listen to sample available for the large ones. (to circumvent long downloads of the WRONG file) What are you

Re: IN condition... help?

2001-12-17 Thread Jason Green
is #rs_View.Project_Type_ID2# a coma list of numbers? if so, try not adding the ' around it in the IN statment like this cfquery name=rs_pc2 datasource=Project_Set_Up2 dbtype=ODBC SELECT Profile_Code2, Profile_Name2 FROM tbl_Profile_Codes_2 WHERE Profile_Code2 IN

CFSET_Ballbuster ???

2001-12-17 Thread coldfusion . developer
All, This simple process worked for me 10 minutes ago and now it's throwing an error message ... I just can't see the problem. I need a second pair of fresh eyes. Thanks ***THE ERROR:*** Error Diagnostic Information An error occurred while evaluating the expression: TOTAL1 =

RE: IN condition... help?

2001-12-17 Thread Paul Ihrig
is #rs_View.Project_Type_ID2# a coma list of numbers? if so, try not adding the ' around it in the IN statment no, it is text like (0264,0039 SF,0258,0257) i have tried IS, LIKE, IN any other ideas. thanks

Re: CFSET_Ballbuster ???

2001-12-17 Thread coldfusion . developer
Scratch that. The code is good, I just wasn't passing variables to the code correctly. Opps. Thanks All, This simple process worked for me 10 minutes ago and now it's throwing an error message ... I just can't see the problem. I need a second pair of fresh eyes. Thanks ***THE

RE: IN condition... help?

2001-12-17 Thread Jason Green
then you need to loop through each one in the IN statment and put ' ' around each item WHERE item IN (CFLOOP LIST=#listVar# INDEX=i'#i#'CFIF i IS NOT ListGetAt(listVar,ListLen(listVar)),/CFIF/CFLOOP) try that. From: Paul Ihrig [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk

Re: CFSET_Ballbuster ???

2001-12-17 Thread Howie Hamlin
For one, I would print out the values prior to calculating the total. Also, I would not use quotes and would strip out the hashes in the calculation. In this way, if a value is a non-numberic you'll see the error before you get to the final sum, like so: cfset q1_qnty_1A =

RE: CFSET_Ballbuster ???

2001-12-17 Thread Joel Parramore
On the surface, nothing appears to be the matter. You don't need all those # signs in your code, and taking them out will make things a bit more readable. The revised code appears below. A good article by Ben Forta on when to use and not to use # signs is at

RE: IN condition... help?

2001-12-17 Thread Paul Ihrig
right on! Thank you Jason! Now, is that something simple that i have should always have known? i have read WACK 3 or so times. paged through aWACK a few times. Where do you learn these types of things??? i have been using CF aggressively for almost 3 years now still there are days, such as

RE: IN condition... help?

2001-12-17 Thread Jason Green
i just knew that in SQL, when doing an IN statment, you need to put single quotes around the items in a list and if you are using a number list, you don't have to. i know what you mean on feeling like a new-bi posted a question today and i know i've writen the code before, but i can't

RE: IN condition... help?

2001-12-17 Thread Bryan Love
no need to initiate a loop. This is much faster... WHERE item IN ('#replace(listVar,,,',',all)#') +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst Telecomunication Systems [EMAIL PROTECTED]

Re: EASY QUESTION

2001-12-17 Thread webmaster
Hi, You can use cfcontent tag, cfheader name=Content-Disposition value=attachment;filename=my.csv; cfcontent type=text/plain cfoutput#SummaryRow#/cfoutput This will pop-up a download window, with my.csv as filename, Mahmut Basaran measure Twice cut Once -- Original Message

tricky form question

2001-12-17 Thread Troy Montour
Hello, here is what I'm having problem with and not even sure I can pull this off. I have a normal html form which submits to a CF action page. wrench thats throwen into the picture is I also have an asp action page I need to load hidden. I need to have the CF action page only come up

RE: CF Java trouble.

2001-12-17 Thread Kevin Cundick
Pete, Just thought I'd mention to you that the problem I was having was in the CFX_JSocket.java code. On line 36 this is what the code I downloaded from CFDev.com has: Socket socket = new Socket(request.getAttribute(HOST), Integer.parseInt( request.getAttribute(T))); I

Re: tricky form question

2001-12-17 Thread Alex
try a hidden frame On Mon, 17 Dec 2001, Troy Montour wrote: Hello, here is what I'm having problem with and not even sure I can pull this off. I have a normal html form which submits to a CF action page. wrench thats throwen into the picture is I also have an asp action page I need

RE: CFXGraphicsServer

2001-12-17 Thread Steve Drucker
Check out ChartF/X http://www.softwarefx.com/sfxproducts/CfxInternet/ Great stuff, although it can get a little pricey. -S -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED]] Sent: Monday, December 17, 2001 2:36 PM To: CF-Talk Subject: Re: CFXGraphicsServer

Re: tricky form question

2001-12-17 Thread Tony Schreiber
Have the submit page process the request, then redirect to a frame set with a hidden frame containing the asp page. You'll have to pass any variables to the asp page via the url in the frame set call. Hello, here is what I'm having problem with and not even sure I can pull this off. I

OT: SQL Server Union statement

2001-12-17 Thread thanh . nguyen
Hi all, I have an union statement that puts 2 cust tables together. I want to but I could not save it as a view in SQL Server for other pages.. Is there some other way to save it in SQL ? Thanh Get the

RE: SQL Server Union statement

2001-12-17 Thread Lon Lentz
select into? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, December 17, 2001 5:45 PM To: CF-Talk Subject: OT: SQL Server Union statement Hi all, I have an union statement that puts 2 cust tables together. I want to but I could not

RE: Certificate expired?

2001-12-17 Thread John Dowdell
At 8:58 AM 12/17/1, Ian Lurie wrote: Just started getting a 'certificate expired' warning when you try to download the CFTREE applet on all of our CF sites... Not to be a whiner, but geez, Macromedia, help us out here? I'll try, but I'm not in the core ColdFusion support group, and I don't

Re: Certificate expired?

2001-12-17 Thread Jochem van Dieten
John Dowdell wrote: At 8:58 AM 12/17/1, Ian Lurie wrote: Just started getting a 'certificate expired' warning when you try to download the CFTREE applet on all of our CF sites... Not to be a whiner, but geez, Macromedia, help us out here? I'll try, but I'm not in the core ColdFusion

RE: tricky form question

2001-12-17 Thread Bryan Love
use CFHTTP METHOD=post. on your CF page to post the form vars to the ASP page +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst Telecomunication Systems [EMAIL PROTECTED]

Re: Certificate expired?

2001-12-17 Thread John Dowdell
Not to be a whiner, but geez, Macromedia, help us out here? Using the regular support options would be the assured path. The response is already given in the regular channels ;) Yup, how about that. 8) One sidenote: I've heard incidental reports from several that certification from

CF5 Release Date

2001-12-17 Thread sam komolafe
Hi guys, When was CF5 officially released by Macromedia? Thanks Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

RE: CF5 Release Date

2001-12-17 Thread Tyler M. Fitch
The press release for CF5 is dated April 30, 2001. I bet that's the date. http://www.macromedia.com/macromedia/proom/pr/2001/index_cf5_server.fhtm l t ** Tyler M. Fitch Certified Advanced ColdFusion 5 Developer ISITE Design,

Calendar Custom Tag

2001-12-17 Thread Tangorre, Michael T.
Hello everyone. I searched the tag gallery and came up with a lot of calendar custom tags... Could someone recommend a good one based upon my criteria for use listed below? I need a calendar tag that will allow a user to click on the day, and all I need to do is pass that date either in the url

RE: Calendar Custom Tag

2001-12-17 Thread Eric J Hoffman
I have one we use regularlycan be used across multiple sites or multiple calendars in one site...email me offlist. [EMAIL PROTECTED] Eric J Hoffman Director of Internet Development Small Dog Design, LLC www.smalldogdesign.com Home of MN Vikings Fans Worldwide! www.purplepride.org

cookies, Is this possible?

2001-12-17 Thread trent
I have a client with multiple domains www.product1.com www.product2.com www.product3.com. To gain acces to certain information on these sites a user would need to log in. I was thinking of the user signing up and then setting a cookie on their machine to allow them access to the other sites,

Re: cookies, Is this possible?

2001-12-17 Thread Howie Hamlin
By RFC cookies cannot be shared between domains, so this is not possible. If the domains share the same client storage then you can use cfid/cftoken to manage access between sites... Regards, Howie - Original Message - From: trent [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED]

Re: cookies, Is this possible?

2001-12-17 Thread Tony Schreiber
Cookies can be read and set only within their own domain. So you can't read a product2.com cookie on the product1.com website. I have a client with multiple domains www.product1.com www.product2.com www.product3.com. To gain acces to certain information on these sites a user would need to

Re: Listing MP3 files and alowing either Download or Run

2001-12-17 Thread cftalk
Providing the files for download is a given. One thing you might consider for providing them for listening on-demand... Create an m3u playlist dynamically, the name of which would be a hash of the file path, etc. Send that m3u playlist to the user. I have implemented this solution for wma

CF_recommendation

2001-12-17 Thread coldfusion . developer
All, Sorry to post this here. Does anyone know of a JavaScript lists like CF-Talk? I'm trying to multiply two form field values and show the result in a third without a submit action. So when the curser moves to the third form field, the calulation is done automatically. Thanks for the

www.irt.org RE: CF_recommendation

2001-12-17 Thread Jared Clinton
I usually find most of the javascripty things I need at www.irt.org Jared Clinton NEC Business Solutions NEC Australia -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 18 December 2001 3:55 PM To: CF-Talk Subject: CF_recommendation All, Sorry to

RE: CF_recommendation

2001-12-17 Thread Joseph DeVore
I just whipped this up for you - hopefully you can get the idea from this.. script language=JavaScript function calculate() { var f1=document.x.f1.value; var f2=document.x.f2.value; var f3=eval(f1*f2); document.x.f3.value=f3; } /script enter a number in the first 2 fields:br form name=x input

Re: CF-Talk-list V1 #22

2001-12-17 Thread [EMAIL PROTECTED]
From: mtroy [EMAIL PROTECTED] Subject: REMOVE, Unsubscribe Date: Mon, 3 Dec 2001 23:16:32 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary==_NextPart_000_000D_01C17C50.915FFF20 X-Priority: 3 X-MSMail-Priority: Normal X-Unsent: 1 X-MimeOLE: Produced By Microsoft

Re: CF-Talk-list V1 #23

2001-12-17 Thread [EMAIL PROTECTED]
From: mtroy [EMAIL PROTECTED] Subject: REMOVE, Unsubscribe Date: Mon, 3 Dec 2001 23:16:32 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary==_NextPart_000_000D_01C17C50.915FFF20 X-Priority: 3 X-MSMail-Priority: Normal X-Unsent: 1 X-MimeOLE: Produced By Microsoft

RE: CF_recommendation

2001-12-17 Thread Jay Jorgensen
The group over at JS-Jive is pretty active. http://groups.yahoo.com/group/JS-Jive/ jay [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 18, 2001 12:55 AM To: CF-Talk Subject: CF_recommendation All, Sorry to post this