RE: search engine and cfm files

2000-08-15 Thread Matthew Walker
so all my pages are like page.cfm?ID=X where X is the database record. get this: page.cfm/ID/X You can reference you pages like that too. Everything will take care of itself. Cool huh!! One thing, you might need to include a base tag or make your img etc. links absolute (start with /).

RE: CF Administrator Mapping and Apache Alias

2000-08-15 Thread Dan Haley
Yeah, guess you're right . . . damn, hate it when I'm on the road and the brain stays at work . . . :) . . . but your point makes sense, what is the difference between a mapping and setting a variable? Really none . . . cf_drinksanotherbeer . . . or maybe not . . . haha . . . anyone else on

Re: Version 4.5.1 memory leak fixed?

2000-08-15 Thread Andrew
I have to second John's comments. I had Win 98 and the memory mgmt. was horrible, I even tried tweaking my VM settings and that didn't work at all. If I opened CF Studio for a too long I was begging for it. If I tried opening too many programs at the same time my computer would lock up and

Re: search engine and cfm files

2000-08-15 Thread Andrew
You could try instead of doing "page.cfm?ID=X" doing "page.cfm/ID/X" or "page.cfm/X/". The code for page.cfm would use a listGetAt function with the list being cgi.path_info and the delimiter being "/" to get the ID variable out. This will cause search engines to follow every link and

RE: Dynamic GIGs/JPEGs

2000-08-15 Thread Philip Arnold - ASP
What are my options for the Subject? That is, displaying a set sequence of GIFs/JPEGs? What exactly do you mean by "displaying a set sequence"? If you mean placing graphics on a page, then just holding the names in a database in a sorted order and just placing the HTML on the page If you

Where's the content?

2000-08-15 Thread Hryckowiak, Miro
--_=_NextPart_001_01C0069A.6327AD2E Content-type: text/plain; charset="iso-8859-1" Hi, I don't like to complain but, where is the content? I used the search on www.allaire.com and looked for "Training"... Get a lot of results but... the links are mostly dead-links :( The same when searching

Re: CF-Talk V1 #142 (Out of office)

2000-08-15 Thread Julie Hopple
I am currently out of the office and will return on Monday, August 21. Any urgent concerns should be forwarded to David McCormick or Mary Prosceno. CF-Talk 08/15/00 06:45 CF-TalkTue, 15 Aug 2000 Volume 1 : Number 142 In this issue: search engine

javascript error in IE5.0

2000-08-15 Thread Jon Tillman
hi gang, does anyone know why the following will throw an error in IE, but not in Netscape? onClick="document.purchase.action='purchase.cfm';document.purchase.submit();" Also, any idea how to mke it not do so. -- *** Jon Tillman LINUX USER:

RE: Dynamic GIGs/JPEGs

2000-08-15 Thread Wayne, Kurt
I believe I've seen on an NOAA site a JAVA application that allows for multiple images to be put in a type of "player" (with stop, forward, reverse, play buttons) without loss of image quality. If you're interested I'll try and find the URL so you can see it. -Original Message- From:

Trouble with CFLocation or something

2000-08-15 Thread Kronenberger, Douglas
I'm updating a employee record using a EditEmployeeForm.cfm page that submits the changes to a EditEmployeeAction.cfm page. The EditEmplyeeAction.cfm uses the CFUPDATE tag to update the employee record and then uses the cflocation to return to the EditEmployeeForm.cfm page. My problem is that

RE: Where's the content?

2000-08-15 Thread Stephen Moretti
I don't like to complain but, where is the content? I used the search on www.allaire.com and looked for "Training"... Get a lot of results but... the links are mostly dead-links :( The same when searching for "Certified"... Training : http://www.allaire.com/developer/training.cfm

RE: Trouble with CFLocation or something

2000-08-15 Thread Stephen Moretti
Hi Douglas, and then uses the cflocation to return to the EditEmployeeForm.cfm page. My problem is that upon returning to the EditEmployeeForm.cfm page the changes are not reflected (the old data appears). Checking the database shows that the changes have been made there. If I hit refresh

RE: Trouble with CFLocation or something

2000-08-15 Thread Daniel Kemp
I'm not using any session variables just passing a Emp_ID along in the url. I hope I have supplied enough explanation that someone is able to offer some advice. Just a quick check, if you're using IE goto Tools|Internet Options, then with the General Tab selected click on the "Settings..."

RE: javascript error in IE5.0

2000-08-15 Thread DeVoil, Nick
hi gang, does anyone know why the following will throw an error in IE, but not in Netscape? onClick="document.purchase.action='purchase.cfm';document.purchase.submit(); " Also, any idea how to mke it not do so. Jon, This is down to the differing Document Object Models (DOM)

RE: search engine and cfm files

2000-08-15 Thread Matthew Walker
"page.cfm/X/". The code for page.cfm would use a listGetAt function with the list being cgi.path_info and the delimiter being "/" to get the ID Sure, but you don't actually need to. It works automatically. --

RE: Browser / desktop resolution

2000-08-15 Thread LISTS
yeah!! John Cesta yeah!!! -Original Message- From: Todd Ashworth [mailto:[EMAIL PROTECTED]] Sent: Monday, August 14, 2000 11:22 PM To: [EMAIL PROTECTED] Subject: Re: Browser / desktop resolution What have you tried?? Ever looked into JavaScript?? I am going to be frank and

RE: Trouble with CFLocation or something

2000-08-15 Thread Kronenberger, Douglas
Thanks for the confirmation and suggestions. Although I'm not familiar enough with javascirpt. How do you do a redirect with javascript. Again thanks much. Douglas Kronenberger Multimedia/Web Developer CIO National Training Education Office Department of Veterans Affairs [EMAIL PROTECTED]

RE: Dynamic GIGs/JPEGs

2000-08-15 Thread Philip Arnold - ASP
I believe I've seen on an NOAA site a JAVA application that allows for multiple images to be put in a type of "player" (with stop, forward, reverse, play buttons) without loss of image quality. If you're interested I'll try and find the URL so you can see it. I think those sort of things

SQL Server Stored Procedure problem

2000-08-15 Thread Paul Johnston
Someone tell me why this isn't working. It's annoying me now: SELECT 'name not given', * FROM Directory WHERE CountryID = @country IF ( @type IS NULL ) BEGIN AND DirectType = @type END Only if a value is passed into the

advanced error handling...

2000-08-15 Thread Ryan
Hello. I was wondering what is the best way to have a form redisplay with error messages if the user enters in valid input. Say the user leaves their name blank, and its a required field, instead of showing an error page saying they left their name blank, I need to redisplay the form, will all

RE: SQL Server Stored Procedure problem

2000-08-15 Thread mherbene
It's just not legal in Microsoft SQL (assuming you mean Microsoft SQL Server); the SQL statement is compiled when the SP is created, and can't be dynamic in that way. You have two options: 1) rewrite in a way that can be compiled. SELECT 'name not given', * FROM Directory

Re: Dynamic GIGs/JPEGs

2000-08-15 Thread Todd Ashworth
| What are my options for the Subject? | | That is, displaying a set sequence | of GIFs/JPEGs? If you are talking about having the images switch while someone is sitting on the page, either through user interaction or automatically, you can find some JavaScript routines that do that at

Re: SQL Server Stored Procedure problem

2000-08-15 Thread David E. Crawford
Show us the whole SP. As it stands right now, what you say you want to happen and what you have coded are 2 different things. The only time the AND clause will run as shown below is if the @type variable is NULL. What error are you seeing? How do you plan on referring to the value 'name not

RE: SQL Server Stored Procedure problem

2000-08-15 Thread Anthony Geoghegan
Hi Paul, You said: |Someone tell me why this isn't working. It's annoying me now: | | |SELECT 'name not given', * |FROM Directory |WHERE CountryID = @country |IF ( @type IS NULL ) |BEGIN |AND DirectType = @type |END SQL

RE: SQL Server Stored Procedure problem

2000-08-15 Thread Andy Ewings
not quiteyou need to use barckets around the exec i.e. declare @mysql varchar(300) select @mysql = ' select ...' exec (@mysql) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 15 August 2000 14:23 To: [EMAIL

Re: advanced error handling...

2000-08-15 Thread JustinMacCarthy
You should have a look at fusebox.org and the reuse form tag... ~Justin MacCarthy - Original Message - From: "Ryan" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 15, 2000 2:15 PM Subject: advanced error handling... Hello. I was wondering what is the best way to

Advanced error handling

2000-08-15 Thread Milks, Jim
I usually use JavaScript that is triggered by the submit button. This way it is validated on the client side, and doesn't waste a trip to the server. You could also use CFFORM elements, which generates the JS for you, but I find them clunky, and prefer to write my own. If however you wish to

RE: Trouble with CFLocation or something

2000-08-15 Thread Stephen Moretti
Thanks for the confirmation and suggestions. Although I'm not familiar enough with javascirpt. How do you do a redirect with javascript. SCRIPT language="JavaScript" top.location='yourwebpage.cfm' /script This is just one example which loads your yourwebpage.cfm into the top level

Re: SQL Server Stored Procedure problem

2000-08-15 Thread Paul Hastings
IF ( @type IS NULL ) BEGIN AND DirectType = @type END you can't execute dynamic sql like that, either you parse the TSQL together use EXEC (or sp_executesql) or run this sql from cfquery. though i suppose you could also test @Type for NULL:

structures

2000-08-15 Thread RICHARD MOGER
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_000_01C006BE.0CA47512 Content-Type: multipart/alternative; boundary="_=_NextPart_001_01C006BE.0CA47512"

RE: SQL Server Stored Procedure problem

2000-08-15 Thread Andy Ewings
much better to build up your sql string dynamically and then execute it...takes less code in the long run if you have to do lots of if statementsremeber to make sure you do "Select @sqlstring = @sqlstring + etc if you need to append lots of bits so that you don't overwrite anything you've

RE: SQL Server Stored Procedure problem

2000-08-15 Thread DeVoil, Nick
much better to build up your sql string dynamically and then execute it...takes less code in the long run if you have to do lots of if statements. If speed is a consideration, isn't it better to code the SQL explicitly where possible so that SQL Server can store an optimised query plan? Nick

RE: SQL Server Stored Procedure problem

2000-08-15 Thread Andy Ewings
agreed.it's much better to have it as an SP. That way SQL doesn't have to parse the SQL before executing it. -Original Message- From: DeVoil, Nick [mailto:[EMAIL PROTECTED]] Sent: 15 August 2000 14:40 To: '[EMAIL PROTECTED]' Subject: RE: SQL Server Stored Procedure problem much

cf mail error

2000-08-15 Thread Darien C. Small
Hi, This is my first post here. I have an ordering form that is e-mailed after the completion of the order. My problem is that I am getting the following error. Any assistance that you can be would be greatly appreciated. Darien Small Technical Information Officer IExperditer Error

RE: Fusebox Question

2000-08-15 Thread paul smith
So how do you do the following in strict Fusebox style? I have an app where to simplify matters for users they only need enter a Search Term and hit Enter. (I tried making them select an option before they hit enter, but did not feel it was user-friendly enuf. BTW, this kind of follows

RE: cf mail error

2000-08-15 Thread Darien C. Small
Hi, This is my first post here. I have an ordering form that is e-mailed after the completion of the order. My problem is that I am getting the following error. Any assistance that you can be would be greatly appreciated. Darien Small Technical Information Officer iExperditer [EMAIL

RE: Dynamic GIGs/JPEGs

2000-08-15 Thread paul smith
Thanks, but I try to avoid Java. best, paul At 07:28 AM 8/15/00 -0400, you wrote: I believe I've seen on an NOAA site a JAVA application that allows for multiple images to be put in a type of "player" (with stop, forward, reverse, play buttons) without loss of image quality. If you're

RE: cf mail error

2000-08-15 Thread Jay Wigginton
Remove the gropupcasesensitive parameter from the cfmail tag... studio adds it automatically Jay -Original Message- From: Darien C. Small [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 15, 2000 9:48 AM To: [EMAIL PROTECTED] Subject: cf mail error Hi, This is my first post

Re: Dynamic GIGs/JPEGs

2000-08-15 Thread paul smith
Thanks! best, paul At 09:19 AM 8/15/00 -0400, you wrote: | What are my options for the Subject? | | That is, displaying a set sequence | of GIFs/JPEGs? If you are talking about having the images switch while someone is sitting on the page, either through user interaction or automatically,

Re: cf mail error

2000-08-15 Thread Jamie Keane
CFMAIL does not accept a GroupCaseSensitive attribute. Perhaps you meant just plain Group? -- Jamie Keane Programmer SolutionMasters, Inc. 9111 Monroe Rd., Suite 100 Charlotte, NC 28270 www.solutionmasters.com 704.563.5559 x 228 Voice 704.849.9291 Fax -Original Message- From: Darien

MIME types and 4.5.1 memory leak?

2000-08-15 Thread Christopher S Martin
Is anyone aware of a method or tag that can be used to return the mime type of an email attachment? Or is this functionality already built into cfpop, and I am just not aware of it? On an unrealted note, would anyone have the url for the 4.5.1 memory leak patch? I couldn't find it at allaires

Re: cf mail error

2000-08-15 Thread Nick McClure
That Attribute pops in when you use the tag editor, you just need to delete it. I think there is something wrong with the vtm file. At 10:01 AM 8/15/2000 -0400, you wrote: CFMAIL does not accept a GroupCaseSensitive attribute. Perhaps you meant just plain Group? -- Jamie Keane Programmer

RE: one more try re: oracle stored proc and session mgmt

2000-08-15 Thread Terri Stocke
Matt and Joe-- Thanks so much for your response. I really appreciate it! Terri Original Message Follows From: "Matt Rodosky" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: one more try re: oracle stored proc and session mgmt Date: Mon, 14 Aug 2000

OT Flow chart program

2000-08-15 Thread Chad
Anyone have a link to a good flow chart program for planning a web site? Thanks Chad -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

Re: cf mail error

2000-08-15 Thread Jamie Keane
It appears that groupcasesensitive is a valid attribute on the 4.5x server. My mistake (we don't use 4.5x here). I guess the next question would be: is the server you're working with running 4.5x? -- Jamie Keane Programmer SolutionMasters, Inc. 9111 Monroe Rd., Suite 100 Charlotte, NC 28270

Re: OT Flow chart program

2000-08-15 Thread David Shadovitz
Let's see how many responses recommend VISIO. Check http://www.microsoft.com/office/visio/ -David On Tue, 15 Aug 2000 10:10:53 -0400 Chad [EMAIL PROTECTED] writes: Anyone have a link to a good flow chart program for planning a web site? Thanks Chad

Re: OT Flow chart program

2000-08-15 Thread cf-talk
I love SmartDraw. Nice features, reasonable price. http://www.smartdraw.com Uwe SD Solutions Lange Zeile 27 85435 Erding Fon: 08122/903791 Fax: 08122/903792 Mail: [EMAIL PROTECTED] Web: www.sdsolutions.de - Original Message - From: "Chad" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

Re: OT Flow chart program

2000-08-15 Thread JustinMacCarthy
We use http://www.microsoft.com/office/visio/ , it petty good. BTW Check out http://www.fusebox.org/specifications/fuseml/index.cfm for UML / Fusebox /CF website planning. ~Justin MacCarthy - Original Message - From: "Chad" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August

Re: MIME types and 4.5.1 memory leak?

2000-08-15 Thread Peter Theobald
It still leaks. At 10:03 AM 8/15/00 -0400, Christopher S Martin wrote: Is anyone aware of a method or tag that can be used to return the mime type of an email attachment? Or is this functionality already built into cfpop, and I am just not aware of it? On an unrealted note, would anyone have

Re: OT Flow chart program

2000-08-15 Thread Rey Bango
Chad, Visio is great for that. Its a little pricey but its awesome. Its now owned by Microsoft and can be found at http://www.microsoft.com/office/visio/. Rey,.. - Original Message - From: "Chad" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 15, 2000 10:10 AM Subject:

Re: OT Flow chart program

2000-08-15 Thread Ryan
I found smartdraw powerful, easy to use, and cheap. http://www.smartdraw.com Ryan -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

Data Source Security

2000-08-15 Thread Robert M. Saxon, Jr.
When a data source contains a username and password for an SQL Server user login, is that information secure (encrypted), or is it passed in clear text? -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/

4.5.1 memory leak? is this really a leak we are talking about ?

2000-08-15 Thread JustinMacCarthy
Are you guys talking about the memory allocation in CF or a bona fide leak CF does grab memory as it needs and yes it doesn't release it - by design. It fingures that if it needed the memory once it will do again. And there is an over head in aquiring / releasing memory. From "Looking At

Re: CF Professional Informix

2000-08-15 Thread Dave Hannum
We have been using Intersolv's ODBC drivers. They've been very solid. Dave = "What we need is a list of specific unknown problems we will encounter" David Hannum Web Analyst/Programmer Ohio University [EMAIL PROTECTED] (740) 597-2524 - Original Message

Re: 4.5.1 memory leak? is this really a leak we are talking about ?

2000-08-15 Thread Peter Theobald
Actually, I was speaking of Cold Fusion Studio's memory leaks. It will crash Windows-98 in minutes. It's completely unusable. Windows-NT/2000 has better memory protection and will fare better. At 03:52 PM 8/15/00 +0100, JustinMacCarthy wrote: Are you guys talking about the memory allocation in

RE: problem with query string in cfmail

2000-08-15 Thread Stephen Moretti
like this: http://www.somedomain.com/contactus/preferences.cfm?id=50582. On the response template this is what is getting displayed to the user. However, Lately I have noticed that this is what is getting displayed in the email message:

RE: 4.5.1 memory leak? is this really a leak we are talking about ?

2000-08-15 Thread Helge Hetland
I'm sure that you'd be better off saying that CF Studio is crashing on your particular Win98 machine after a few minutes. You cannot make me believe that this is CF Studio's "default behaviour" on Win98 Sorry. -Original Message- From: Peter Theobald [mailto:[EMAIL PROTECTED]]

Re: advanced error handling...

2000-08-15 Thread Wjreichard
Try client side scripting ... javascript w/dhtml. Good luck, Bill -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

RE: 4.5.1 memory leak? is this really a leak we are talking abou t ?

2000-08-15 Thread Milks, Jim
Default no, but common yes. CF Studio 4.5.1 on Win 98 would crash about twice a day for me until I added another 64MB of ram. No such problem on NT 4 or Win2000. JM -Original Message- From: Helge Hetland To: '[EMAIL PROTECTED]' Sent: 15/08/00 11:11 AM Subject: RE: 4.5.1 memory leak?

RE: 4.5.1 memory leak? is this really a leak we are talking about ?

2000-08-15 Thread Robert Everland
I did notice that last night actually. I had to to keep programming real fast before it ran out of system resources. Can't wait till the new service pack comes out, luckily I haven't uninstalled 4.0. Robert Everland III Web Developer Dixon Ticonderoga -Original Message- From:

RE: 4.5.1 memory leak? is this really a leak we are talking about ?

2000-08-15 Thread Matthew Walker
I'm sure that you'd be better off saying that CF Studio is crashing on your particular Win98 machine after a few minutes. You cannot make me believe that this is CF Studio's "default behaviour" on Win98 Sorry. I think it might be actually. Does it on mine too. It's a feature

Netscape anger

2000-08-15 Thread Brian P. Doyle
I seem to be having a problem with netscape, flash, and cfoutput tags. I using a global table layout and including a flash navigational toolbar at the top. The toolbar gets a few variables passed in to display different things. However in netscape I cannot wrap the flash code (so that the

RE: 4.5.1 memory leak? is this really a leak we are talking about ?

2000-08-15 Thread Scott J. Brader
I run CF Studio on both my NT Workstation machine at work and also on my Win 98 laptop when I'm away from the office. I have yet to see CF Studio causing big problems. PWS, yes, CF Studio, no. That's with my configuration, anyway. Scott Scott Brader USAV Group 5485 South Westridge Drive PO

RE: 4.5.1 memory leak? is this really a leak we are talking abou t ?

2000-08-15 Thread Peter Theobald
html font size=3No, I am definitely better off saying that CF Studio crashes on many Win98 machines.br Go to Allaire's CF Forums and read all about it. I have counted over 60 people experiencing the exact same problems.br br The forums only keep a few days of messages so for a while I tried to

Re: 4.5.1 memory leak? is this really a leak we are talking abou t ?

2000-08-15 Thread Todd Ashworth
Odd .. I don't have this problem with my setup. I use NT4.0 with 256 megs of RAM at work and Win98 with only 128. In my case, CF crashes about 3-5 times a week at work and 1-2 at home ... and I leave my CF Studio at home running 24/7, usually only shutting it down when it crashes. My NT

Looping over field containing checkboxes

2000-08-15 Thread andrew kopelman
I have a loop over all formfields. One formfield, pos, which contains checkboxes, ends up being looped over *per checkbox*. In other words, if pos contains 34,36,42 and I loop over it, I get pos three times, each time containing 34,36,42. Is something wrong with my code? Is there a another

RE: 4.5.1 memory leak?

2000-08-15 Thread Jeremy Allen
Hmmn what version of Studio though??BRBR Certain versions will really crash. When you say studio and you dont say what version.. its hard to tell reply effectively. What version of studio are you guys using Studio 4.5.1 has *known* memory leaks folks Jeremy Allen [EMAIL PROTECTED] [Insert cool

Re: Netscape anger

2000-08-15 Thread Keith C. Ivey
Brian P. Doyle [EMAIL PROTECTED] wrote: However in netscape I cannot wrap the flash code (so that the variables are processed) with cfoutput tags. Netscape has no idea whether you're using CFOUTPUT tags. All it sees is the resulting HTML, which for all it knows could be typed in by

RE: WDDX

2000-08-15 Thread Dave Watts
I tried using CFWDDX to pass CF variable into Javascript. However I realised that I can only have one variable, is there any ways that I can pass two CF variables into JS function? Below are my codes: CFWDDX INPUT="#property_count#" OUTPUT="MyWDDXPacket" ACTION="CFML2WDDX" CFWDDX

RE: Automating Datasource Creation

2000-08-15 Thread lsellers
Does any one have suggestions on creating datasources in an automoted process outside of using the CF Administrator ? http://www.intrafoundation.com/freeware.html. There's an old cfml custom tag called autoaddmdb. You could modify it for any type of odbc datasource of course. It requires

Javascript variables and Cold Fusion

2000-08-15 Thread Peter Theobald
Sorry for being redundant... I know there has been plenty of discussion on this topic lately and I didn't read any of them :-( How do I read a Javascript variable from Cold Fusion? Specifically, I need to know the browser's language setting. Here is what I would like to do: SCRIPT

RE: OT Flow chart program

2000-08-15 Thread Chris Montgomery
Take a peek at Inspiration: http://www.inspiration.com/ Chris Montgomery [EMAIL PROTECTED] Web Development Consulting http://www.astutia.com Allaire Consulting Partner NetObjects Reseller 210-490-3249/888-745-7603Fax 210-490-4692 -Original Message- From: Ryan

Re: 4.5.1 memory leak? is this really a leak we are talking about ?

2000-08-15 Thread WBB
Hi Peter, Yes, CF Studio 4.5[1] is a resource hog on Win95/98. Running it, Outlook Express and an accounting database we use will bring Windows to it's knees in a short time. I've read the release notes on CF 4.51 SP1 beta1 and they are addressing a whole plethora of memory leaks and hopefully,

RE: Javascript variables and Cold Fusion

2000-08-15 Thread Stephen Moretti
Obviously I can't do that because CF is executed on the server before the page is ever sent, and Javascript is run by the browser on the client side. For this reason you can't read any JS variables from CF - you need to pass the JS variables in their final state to another CF page either as

admin question: Linux CF Services

2000-08-15 Thread !jeff!
dear all, Is it normal for a Linux installation of CF 4.5.1 to start about 5 copies of cfserver, cfexec, and cfrdsservice? Is this the equivalent to apache's child servers? Where is this configurable? !j! The mark of mediocrity is searching for the precedent. !jeff! sherwood Director of

Re: Looping over field containing checkboxes

2000-08-15 Thread Deanna L. Schneider
Try something like this. You're passing a comma-delimited list when you pass checkboxes with the same name. -d CFLOOP list="#form.fieldnames#" index="thisone" CFOUTPUT input type="Hidden" name="#thisone#" value="#evaluate(listgetat(form.fieldname, thisone))#" /cfoutput /cfloop

RE: Javascript variables and Cold Fusion

2000-08-15 Thread Dave Watts
Sorry for being redundant... I know there has been plenty of discussion on this topic lately and I didn't read any of them :-( How do I read a Javascript variable from Cold Fusion? Specifically, I need to know the browser's language setting. Here is what I would like to do: SCRIPT

RE: Javascript variables and Cold Fusion

2000-08-15 Thread Pete Freitag
ColdFusion is run on the server side, and JavaScript is run on the client side. The serverside gets run first, so you can use ColdFusion to set JavaScript variables, but you can't use JavaScript to access coldfusion variables. But I do see a way around your particular problem, the code follows:

Nested Loops / Page Break Help

2000-08-15 Thread Olson, Kelly
I have a page the is displaying certificate and then a multi page description afterwards. If a single certificate is printed everything is gread . CERTIFICATE, page break, DESCRIPTION, page break Now I add CFLOOP to go through multiple Certificates and I get CERTIFICATE, page break,

RE: admin question: Linux CF Services

2000-08-15 Thread Jeremy Allen
Yes.. this is nromal. Take a look at.. Limit simultaneous requests to [x] Under CF Administrator, that is where it gets set at. Each process will handle one request. Even if that is not true it should not matter except in some extreme cases where the machine has to many processes for a

RE: OT eWebeditPro CFML

2000-08-15 Thread Dan O'Keefe
Let me know if you want a concise example and I can put one together for you. Dan -- Dan O'Keefe TriPoint Technologies [EMAIL PROTECTED] 954.501.3113 |-Original Message- |From: Duane Boudreau [mailto:[EMAIL PROTECTED]] |Sent: Thursday, August 10,

IIS/CF unable to download .exe files?

2000-08-15 Thread PC
I have collocated server that I cannot seem to get to allow a download of an .exe file. I know the path is correct and I am trying to use the following link on a CF page .. a href=://mypath/myapplicationname.exe"Get Application/a When the link is click -- the browser just waits indefinitely

Re: IIS/CF unable to download .exe files?

2000-08-15 Thread Howie Hamlin
You can only download executables from an IIS folder that does not have execution rights otherwise the server will attempt to execute the .exe locally. Regards, Howie Hamlin - Original Message - From: "PC" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 15, 2000 1:54 PM

RE: OT Flow chart program

2000-08-15 Thread Don Cuniff
I really like Inspiration for its flexibility -- not designed specifically for web but it relatively inexpensive and is easy to use and annotate! don -Original Message- From: Chad [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 15, 2000 10:11 AM To: [EMAIL PROTECTED] Subject: OT Flow

RE: Looping over field containing checkboxes

2000-08-15 Thread Philip Arnold - ASP
I have a loop over all formfields. One formfield, pos, which contains checkboxes, ends up being looped over *per checkbox*. In other words, if pos contains 34,36,42 and I loop over it, I get pos three times, each time containing 34,36,42. Is something wrong with my code? Is there a

Re: search engine and cfm files

2000-08-15 Thread Andrew
Yeah, but how do you know what the ID is? I don't it qualifies as a URL variable, in fact I'm pretty sure it doesn't. How will you access it then? Andrew - Original Message - From: "Matthew Walker" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 15, 2000 8:00 AM Subject:

RE: Backing Up SQL

2000-08-15 Thread Dan O'Keefe
Hi Bud, I know programs like Backup Exec used to have a separate SQL module that allowed the db to be backed up while it was open. MSDE is the same engine, so that may still apply. What program are you using? Dan -- Dan O'Keefe TriPoint Technologies

RE: OT eWebeditPro CFML

2000-08-15 Thread Duane Boudreau
Let me know if you want a concise example and I can put one together for you. Dan Sure that would be fantastic! Duane Boudreau, eMPower Project Manager Director, Web Technologies Ektron, Inc. http://www.ektron.com 5 Northern Blvd, Suite 6 Amherst, NH 03031 Tel: 603-594-0249 x114 Fax:

RE: VERY SAD (was CFGRID onvalidate=???)

2000-08-15 Thread Duane Boudreau
Duane, What is iframe? This is a cut and paste from Studio Help: The Internet Explorer (version 3 and above) has introduced the concept of floating frames. These are much like standard frames, except they can be anywhere within a standard HTML document. A floating frame must be enclosed

Re: Advanced error handling

2000-08-15 Thread Andrew
Milks: If you really want to do it as you said and JavaScript is not an option you can do this. 1. Place your form in a template that is cfincluded into the original template. 2. CFParam all the form variables like so cfparam name="form.Firstname" default="" and in all your form elements in

Re: Trouble with CFLocation or something

2000-08-15 Thread Andrew
Thanks for the confirmation and suggestions. Although I'm not familiar enough with javascirpt. How do you do a redirect with javascript. SCRIPT language="JavaScript" top.location='yourwebpage.cfm' /script You may also want to look into the setTimeOut JavaScript function that can be

RE: Javascript variables and Cold Fusion

2000-08-15 Thread Perez, Bismark
Here is another way you can go... (from another related post) Bismarck -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I am developing an application that will be accessable in multiple languages. I would like the application to be able to identify the location of the client and present

Re: 4.5.1 memory leak? is this really a leak we are talking about ?

2000-08-15 Thread Andrew
It's not just on his particular Win 98. I've heard quite a few complaints about it, in fact I had the same thing myself and it was immensely annoying. I upgraded to Win 2k and the problem completely dissappeared. Andrew Hewitt Web Application Developer webworld studios, inc. - Original

Re: Re-visiting Print() function

2000-08-15 Thread James Taavon
Yes. This works, but the only problem is that the button also appears on the printout. I did not want this, that is why I wanted to print via confirm message. If this is the only way then so be it. Frank Priest wrote: Here's a sample print button.. SCRIPT LANGUAGE="JavaScript" !--

RE: Re-visiting Print() function

2000-08-15 Thread Duane Boudreau
Put a function in your onLoad event body onload="PrintPage()" script language="JavaScript" function PrintPage() { if (confirm("Do you wish to print this page?")) { window.print(); } } /script -Original Message-

RE: UPS Electronic Manifesting

2000-08-15 Thread Conrad, Christopher
I'm building one now - it's not ready for prime time. What time frame are you looking for ? Chris Christopher Conrad Victoria's Secret Catalogue Limited Technology Services - New Media Senior.Programmer.Analyst http://www.VictoriasSecret.com 614.337.5653 [EMAIL PROTECTED] -Original

RE: 4.5.1 memory leak?

2000-08-15 Thread Peter Theobald
html font size=3Well, I am not alone. I've seen over 60 other people post the exact same problem in the Allaire Forums.br Please share with me your configuration that keeps you safe from Cold Fusion Studio crashes.br br I am running Win98-SE, with 128MB RAM, all the latest software upgrades, and

RE: Javascript variables and Cold Fusion

2000-08-15 Thread Peter Theobald
html font size=31) I can't put variables in the URL and use FORM variables at the same time?br 2) Why do I need to put it on the body's onload attribute? It seems to work fine just putting it inline in the lt;headgt; of the document.br br At 01:34 PM 8/15/00 -0400, Pete Freitag wrote:br

CF configuration quesiton

2000-08-15 Thread Cfmarksport
I want to use view my databases through CF. But when I go to the database tab it is empty and when I try to select MarksportRDS or add a new RDS I get an error that says, "Error loading type library/DLL." I did install the cfrdsservice patch. Any clues what to try next so I can use my

RE: Javascript variables and Cold Fusion

2000-08-15 Thread Peter Theobald
1) I can't put variables in the URL and use FORM variables at the same time? 2) Why do I need to put it on the body's onload attribute? It seems to work fine just putting it inline in the head of the document. At 01:34 PM 8/15/00 -0400, Pete Freitag wrote: ColdFusion is run on the server side,

  1   2   >