Re: session cookies to expire immediately on browser close

2002-05-10 Thread han peng
hmm.. funnies... plugged yr codes into my application.cfm but doesnt seem to work... is there some other setting need to be configured at browser setting.. or Server side.? cheers han - Original Message - From: "Jeff Garza" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Frid

Re: cffile and locking

2002-05-10 Thread Jon Hall
The OS will raise an exception if two processes try to access a file at the same time, which in turn will cause CF to throw an error. As a general rule, always use error handling when accessing files from any computer language. Couldn't access file... jon Webmaster wrote: > Do you need

RE: Looping in a Query

2002-05-10 Thread Philip Arnold - ASP
> > SELECT n.createdby, n.id, n.category, n.createdon, n.killdate, n.body, > n.viewby > FROM news n > WHERE n.category = 3 AND > n.killdate >= #attributes.currenttime# AND ( > > #ListContains(n.viewby, e)# <> 0 OR > > n.id = 1 ) > OK, first of all

RE: List of File extensions

2002-05-10 Thread Adrian Lynch
To state the next obvious: Internet Explorer > Google > Press Enter > Search > Read > file types Sorry, couldn't resist :OP -Original Message- From: Matthew Walker [mailto:[EMAIL PROTECTED]] Sent: 09 May 2002 23:35 To: CF-Talk Subject: RE: List of File extensions To state the obvious

RE: List of File extensions

2002-05-10 Thread Dave Wilson
Hi all, I got a question from a colleague a few mins ago and thought someone here might be able to shed some light on it as it is CF5 related (I'm still developing on 4.5.1). Basically, my colleague has noticed that error templates are delivered with the http 500 Internal Server Error header as

modifying the http response header in the cf5 error handler

2002-05-10 Thread Dave Wilson
Hi all, Sorry that previous message had wrong subject line. I got a question from a colleague a few mins ago and thought someone here might be able to shed some light on it as it is CF5 related (I'm still developing on 4.5.1). Basically, my colleague has noticed that error templates are deliver

RE: Certified CF Developer? (my experience)

2002-05-10 Thread BEN MORRIS
I just took the test yesterday (at Figleaf in DC no less), passed w/ Advanced. The test is $150 with 15% off if you buy the MM study guide book, which makes it roughly pay for itself. I didn't take any course, just studied out of the 4.5 study guide (for v5 _

RE: Certified CF Developer? (my experience)

2002-05-10 Thread Ryan Pieszak
Where can I get this MM study guide book? -Original Message- From: BEN MORRIS [mailto:[EMAIL PROTECTED]] Sent: Friday, May 10, 2002 8:29 AM To: CF-Talk Subject: RE: Certified CF Developer? (my experience) I just took the test yesterday (at Figleaf in DC no less), passed w/ Advanced. Th

RE: Certified CF Developer? (my experience)

2002-05-10 Thread BEN MORRIS
http://www.amazon.com/exec/obidos/ASIN/0789726963/qid=1021034121/sr=1-6/ref=sr_1_6/103-1794365-1138237 Certified ColdFusion 5 Developer Study Guide by Ben Forta, Emily Kim (Contributor), Matthew Reider (Contributor) Publisher: Macromedia Press; ISBN: 0789726963; 1st edition (January 15, 2002) >

Can be nested?

2002-05-10 Thread Carlisle, Eric
I have a query with columns like this like this CategorySubCategory SubSubcategory Name And I'm trying to accomplish an output similar to this. Category SubCategory SubSubCategory Name Name

THANK YOU Re: Data From The Mainframe & Line Ending Codes

2002-05-10 Thread Gerry Pauline
CF-Pros: I'd like to publicly acknowledge, and thank, Jim Curran and Ben Johnson for their assistance on this problem. Jim, you nailed it -- I'd reversed the codes #chr(10)##chr(13)# instead of #chr(13)##chr(10)# ! I feel like such a dope: I examined two other programs that worked for previous

RE: Can be nested?

2002-05-10 Thread Mike Connolly
Yes, you can nest grouped cfoutput's, not sure you need to query attribute beyond the first cfoutput though? MiKEY C! -Original Message- From: Carlisle, Eric [mailto:[EMAIL PROTECTED]] Sent: 10 May 2002 13:43 To: CF-Talk Subject: Can be nested? I have a query with columns like this li

refreshing CFID + CFTOKEN with client-side JavaScript?

2002-05-10 Thread Gyrus
I'm looking for a way of refreshing a user's session (i.e. setting the timeout back to 20 minutes or whatever) from the client-side - so users can click a button to refresh their session without the page they're on changing at all. How does CF manage session timeouts? I assume it's through the ex

RE: Can be nested?

2002-05-10 Thread Carlisle, Eric
Thank you :) -Original Message- From: Mike Connolly [mailto:[EMAIL PROTECTED]] Sent: Friday, May 10, 2002 8:44 AM To: CF-Talk Subject: RE: Can be nested? Yes, you can nest grouped cfoutput's, not sure you need to query attribute beyond the first cfoutput though? MiKEY C! -Origina

RE: refreshing CFID + CFTOKEN with client-side JavaScript?

2002-05-10 Thread Mike Connolly
Q. How does CF manage session timeouts? A. CF session variables timeout is primarily controlled by setting the maximum and minimum timeout in your CF Administrator. However, the values controlled by the CF Server can be overridden by setting your own timeout in the CFAPPLCATION tag SESSIONTIMEO

CFObject - creating an instance on the workstation

2002-05-10 Thread Thane Sherrington
Is there a way to create an instance of excel on the user's machine using CFObject so that I can use the objExcel object even if the server doesn't have Excel installed? T __ Structure your ColdFusion code with Fusebox. Get th

Re: refreshing CFID + CFTOKEN with client-side JavaScript?

2002-05-10 Thread Dina Hess
hi gyrus, i'm reading between the lines here, but if i'm understanding you correctly, you want to make sure the session closes when the browser closes--then and only then. if that's the case, i don't think you need js. take a look at the state management tutorials at hal helms' site (http://www.h

RE: Form.FIELDNAME - error!!!!

2002-05-10 Thread Robert Everland
Well when I see your code I can see right off the bat that becuase there are quotes that you're setting it to a string. I think the pounds are an extra step, it's easier for to read, for me it's just as easy to read the quotes. To each his own. Robert Everland III Dixon Ticonderoga Web Developer

Regex problems again...

2002-05-10 Thread W Luke
Hi, Can anyone advise me with this Regex problem I'm having? I need to convert all instances of an HTML string into a bracketed number (taking the number from the URL string pid=n). At the moment, the following is converting the first instance perfectly.but no other ones after that, despite

RE: CFObject - creating an instance on the workstation

2002-05-10 Thread Carlisle, Eric
No. ColdFusion can only use COM objects installed on the server. You can, however, format your data as a CSV file. If the user has Excel installed, it should be associated with the .csv extension. Not good for complicated Excel needs, but you're limited without the proper COM objects on the ser

Re: Regex problems again...

2002-05-10 Thread Jerry Johnson
Just a guess, but... Idea 1: I believe the regex in Cold Fusion is greedy. This means it will take the largest chunk of data that matches a particular expressions. If this is true, then the part of your expression that follows is going to stretch from the first anchor to the close of the LAST

CF and Teradata

2002-05-10 Thread Robyn Follen
Has anyone used CF with Teradata at all? Any experiences to relay? -Robyn __ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-ar

RE: COM :: CF :: Wolfenstein & Q3

2002-05-10 Thread Paul Ihrig
well... if any one want to help me with this i would appreciate it. would give access to rcon while we work on it & Private password, so when the server fills to 22-28 you can have one of the reserved private slots! ?? : ] ?? just something goofy to play with i know the gaming community woul

RE: CFObject - creating an instance on the workstation

2002-05-10 Thread Thane Sherrington
At 09:31 AM 10/05/02 -0400, Carlisle, Eric wrote: >No. ColdFusion can only use COM objects installed on the server. What do I need installed on the server to do this? Office Extensions? T __ Your ad could be here. Monies from

executing sql server dts package from cf

2002-05-10 Thread Steven Dworman
I've never done this. Where can I find information? Thanks, Steven D Dworman Macromedia Certified Developer - Web Consultant Systems Administrator ComSpec International - http://www.comspecinternational.com phone: 248.647.8841 cell: 248.

That's the way the cookie crumbles

2002-05-10 Thread Rollo, Jeff
I am running CF 4.5.1 on WIN NT IIS 4.0..., intranet application There is a .cfm module that writes a cookie using; that has been working fine. Suddenly 99% of the clients now get; "Page Cannot be displayed ." but some people still have no problem viewing the page. When the

CFContent problem

2002-05-10 Thread Thane Sherrington
I'm running the following test code: Untitled SELECT * FROMCompanies Company Name #CompanyName##carriage# And I'm getting this error: Error Diagnostic Information Context validation error in tag CFCONTENT T

RE: executing sql server dts package from cf

2002-05-10 Thread Dave Wilson
Steven, There are a couple of ways to do this. The first using CFObject is outlined on cfcomet.com. Antoher way is to run DTS using cfexecute as follows. HTH, Dave -Original Message- From: Steven Dworman [mailto:[EMAIL PROTECTED]] Sent: 10 May 2002 15:12 To: CF-Talk Subject: executin

Re: refreshing CFID + CFTOKEN with client-side JavaScript?

2002-05-10 Thread Gyrus
- Original Message - From: "Dina Hess" <[EMAIL PROTECTED]> i'm reading between the lines here, but if i'm understanding you correctly, you want to make sure the session closes when the browser closes--then and only then. No - and I know about how to control th

I take it NOBODY uses CLOBS...

2002-05-10 Thread Yager, Brian T Contractor/NCCIM
Does anyone know how to insert into a CLOB more than 4000 characters? I am getting an error "String to long" Brian Yager President - North AL Cold Fusion Users Group Sr. Systems Analyst NCCIM/CIC [EMAIL PROTECTED] (256) 842-8342 __

Odd RDS/FTP options menu

2002-05-10 Thread Ryan Kime
This is odd...in Windows, right click (and hold down) on a web file in a folder that is considered a www folder and drag it a little bit and let go. You get right click options of "Add RDS Server...", "Add FTP Server..." and "Remove Macromedia FTP & RDS...". If you do the same thing in Studio's fi

Re: I take it NOBODY uses CLOBS...

2002-05-10 Thread Jochem van Dieten
Yager, Brian T Contractor/NCCIM wrote: > Does anyone know how to insert into a CLOB more than 4000 characters? I am > getting an error "String to long" Use cfqueryparam to insert into clobs. Jochem __ Your ad could be here. Mo

RE: executing sql server dts package from cf

2002-05-10 Thread Joshua Tipton
I use this code all of the time. I have changed some of the documentation on this code so that you will know what is going on. There are 3 primary locations DTS packages are generally loaded from: >From SQL Server, from Storage File, or from repository. There are 3 different primary methods

restarting a service

2002-05-10 Thread Mario Martinez
Hi friends: This is my problem: I need to restart a service periodically. I'm aware I can easily schedule tasks in Coldfusion but ,is there any way to restart a service?? , I mean any tag, function , etc . I got coldfusion installed in a windows 2000 server. Thanks in advance for any help. regards

Re: Regex problems again...

2002-05-10 Thread W Luke
Mr Johnson does it again...thanks Jerry, works nicely. Will - Original Message - From: "Jerry Johnson" <[EMAIL PROTECTED]> Newsgroups: cf-talk Sent: Friday, May 10, 2002 2:38 PM Subject: Re: Regex problems again... > Just a guess, but... > > Idea 1: > I believe the regex in Cold Fusio

RE: restarting a service

2002-05-10 Thread Weaver, Anthony
Couldn't you use CFEXECUTE and call a bat file that does a NET STOP and NET START ? -Original Message- From: Mario Martinez [mailto:[EMAIL PROTECTED]] Sent: Friday, May 10, 2002 10:13 AM To: CF-Talk Subject: restarting a service Hi friends: This is my problem: I need to restart a servic

[no subject]

2002-05-10 Thread Dave Babbitt
Hi Guys! How do I turn a CFQUERY record set that CFDUMPs like this: DIVISION PROGRAM_NAME Team Bear Street Team Clipboard Solutions Team Emerson Associates Team Lake Avenue Team Smithfield road Cambridge Health Alliance The Be

How Do I Flip A Table?

2002-05-10 Thread Dave Babbitt
Hi Guys! How do I turn a CFQUERY record set that CFDUMPs like this: DIVISION PROGRAM_NAME Team Bear Street Team Clipboard Solutions Team Emerson Associates Team Lake Avenue Team Smithfield road Cambridge Health Alliance The Be

RE: restarting a service

2002-05-10 Thread mynews
Or you could schedule the .bat file in Win 2000 scheduler = = = Original message = = = Couldn't you use CFEXECUTE and call a bat file that does a NET STOP and NET START ? -Original Message- From: Mario Martinez [mailto:[EMAIL PROTECTED]] Sent: Friday, May 10, 2002 10:13 AM To: CF-Talk

RE: restarting a service

2002-05-10 Thread Rob Baxter
If you're looking to schedule it I wouldn't even bring CF into the equation. Just create a batch file with "net stop" and a "net start" command for your service, and then use the NT scheduler to have it run at your desired times. Unless you need to be able to execute this via the web, there's no n

Re: restarting a service

2002-05-10 Thread Howie Hamlin
We have a free cfx that you can use to query services and stop/start them. You can download it from: ftp://ftp.coolfusion.com/pub/ods/cfx_servicecontrol/cfx_servicecontrol.zip HTH, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com - 631-737-4668 x10

Re: CFPOP Question

2002-05-10 Thread Sarah Skiba
Thanks, but I think my real problem is the often-complained-about CFPOP attachments loop. I was hoping to find an easier way to send attachments through. I can make them viewable online with a hyperlink, but I can't seem to get cfmail to loop through the list. We are running CF 4.5.1 on Win2k. He

Re: How Do I Flip A Table?

2002-05-10 Thread Jeffry Houser
You can do something like this: #Division# #Program_Name# But, it doesn't give you the column span values. In your query you could add "Count(Division) as colspan" to get the colspan numbers, but then you'll have trouble with duplicates. I can get it down

RE: COM :: CF :: Wolfenstein & Q3

2002-05-10 Thread Craig Dudley
No luck at all with UDPClient ? Worked perfectly for me using a win2k server with CF5 enterprise. -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED]] Sent: Friday, May 10, 2002 2:43 PM To: CF-Talk Subject: RE: COM :: CF :: Wolfenstein & Q3 well... if any one want to help me

RE: restarting a service

2002-05-10 Thread Ian Tait
Another option if you've got SQL, is to schedule a SQL job and use xp_cmdshell and a cmd file. You can do error checking based on errorlevels and send mail, write to error log etc etc. Ian -Original Message- From: Weaver, Anthony [mailto:[EMAIL PROTECTED]] Sent: 10 May 2002 15:28 To: CF

Re: How Do I Flip A Table?

2002-05-10 Thread Critz
oi Dave!! any extra leverage from on side alone should do it :) baahahahahahh it's friday. whatcha spect from me (i thought it was funny anyway) -- Critz Certified Adv. ColdFusion Developer Crit[s2k] - Friday, May 10, 2002, 10:33:01 AM, you wrote: DB> H

Re: restarting a service

2002-05-10 Thread Mario Martinez
Thanks to all of you that have clarified my way . I have now many options . thanks for the cfx info too. thanks again , you are all great regards Mario > Another option if you've got SQL, is to schedule a SQL job and use > xp_cmdshell and a cmd file. > > You can do error checking based on errorle

RE: SSL accelerators

2002-05-10 Thread Jason Egan
you could consider using less than 128 bit encryption. Jason CFDynamics.com -Original Message- From: Ian Lurie [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 09, 2002 7:17 PM To: CF-Talk Subject: RE: SSL accelerators We're using Website Pro, actually. -Original Message- From:

AS400 Driver to Unix and or NT Resource Problem

2002-05-10 Thread Nathan Stanford
Does anyone have ColdFusion on Unix connected to the AS400 doing Major SQL or Stored Procedures? or NT? with one connection we are using 26% or the resources on the AS400 from Unix, DB2 driver, Unix, Merant Driver, and NT, Client Access Driver. Can someone help give me a clue as to what the ans

RE: executing sql server dts package from cf

2002-05-10 Thread Christopher Olive
you can also create an SP that executes your DTS package, then call the SP from CF with CFQUERY. that's what we do here, since i've had mixed results instantiating a COM object as CFCOMET recommends. christopher olive cto, vp of web development, vp it security atnet solutions, inc. 410.931.409

ANNOUNCEMENT: Northern Alberta Macromedia User's Group

2002-05-10 Thread mzlists
Northern Alberta Macromedia User's Group Who: Anyone is free to attend... Time: Monday, May 13 at 7:00 p.m. (our group meets on the second Monday of every month at 7:00 p.m.) Location: VintaCOM Media Group (New Location) Downstairs (In glass doors and to the left) #210, 10335 - 178 Street Agen

RE: SSL accelerators

2002-05-10 Thread Paris Lundis
accelerators will help.. but only if your servers are running at peak... check CPU utilization... SSL traffic is mainly troublesome only at the point of initiation.. probably 80-90% of all mass calculation and delay is attributable to this period. Beyond this handoff, SSL is only a very slight bi

RE: restarting a service

2002-05-10 Thread Mark A. Kruger - CFG
The Syntax: c:\>NET STOP "Cold Fusion Application Server" c:\>NET START "Cold Fusion Application Server" The service names are in a "services" registry key under HKLM, or you can look in the services control panel and use the item under "name" as a string in double quotes (as in "cold fusion a

CFAuthorize tag / authorize.net

2002-05-10 Thread Brian Fox
Hi - We're forging into e-commerce for the first time - accepting student fee payments online. We're almost certainly going to pick authorize.net as the credit card company. Athorize.net endorses a custom tag CFAuthorize pretty heavily. But from reading the description, it sounds like it's jus

CF Hosting For Adult Sites

2002-05-10 Thread Double Down
Does anyone know of the company that will offer dedicated hosting services that include CF for adult sites? TIA HB __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusio

RE: CFAuthorize tag / authorize.net

2002-05-10 Thread Robert Everland
There is a free one on the devex, check it out, we use it here, works great. Robert Everland III Dixon Ticonderoga Web Developer Extraordinaire -Original Message- From: Brian Fox [mailto:[EMAIL PROTECTED]] Sent: Friday, May 10, 2002 12:03 PM To: CF-Talk Subject: CFAuthorize tag / author

Re: refreshing CFID + CFTOKEN with client-side JavaScript?

2002-05-10 Thread Roger B .
On Fri, 10 May 2002 15:08:48 +0100, in cf-talk you wrote: >How can I refresh the session on the client-side using JavaScript? Use a hidden frame or iframe that does a document.location via Javascript when your button is clicked. Fiddling with cookies won't get you anywhere... CF has to receive a

RE: CFAuthorize tag / authorize.net

2002-05-10 Thread Mark A. Kruger - CFG
Brian, You are correct - it's a simple wrapper - but it's also pretty cheap at 125$. Can you build one at your billable rate in less time? If so, then you don't need it. All you need is to use the A-Net API to make ssl posts request to the gateway with the proper form element - then parse throu

RE: CF Hosting For Adult Sites

2002-05-10 Thread Matt Liotta
Mine does; contact me offlist if interested. -matt > -Original Message- > From: Double Down [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 10, 2002 9:09 AM > To: CF-Talk > Subject: CF Hosting For Adult Sites > > Does anyone know of the company that will offer dedicated hosting > service

RE: CFContent problem

2002-05-10 Thread Dave Watts
> I'm running the following test code: > > > > ... > > > Company Name > > #CompanyName##carriage# > > > > ... > > And I'm getting this error: > > Error Diagnostic Information > Context validation error in tag CFCONTENT The CFCONTENT tag isn't a "block" tag

RE: That's the way the cookie crumbles

2002-05-10 Thread Dave Watts
> I am running CF 4.5.1 on WIN NT IIS 4.0..., intranet application > > There is a .cfm module that writes a cookie using; > > > > that has been working fine. Suddenly 99% of the clients now get; > > "Page Cannot be displayed ." > > but some people still have no problem viewing

RE: CFAuthorize tag / authorize.net

2002-05-10 Thread Kevin Cundick
This is correct. I use this free version and it has worked well. Kevin Cundick Webmaster Flying J Inc > -Original Message- > From: Robert Everland [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 10, 2002 10:05 AM > To: CF-Talk > Subject: RE: CFAuthorize tag / authorize.net > > > There

Ben Forta to Speak at CFUG CNY MAY 15

2002-05-10 Thread mynews
Just wanted to let anyone within earshot of Syracuse, NY know that Ben Forta will be speaking at our monthly CFUG meeting on Wed May 15th. Admission is free and Ben will be discussing the new MX line of products. For more info visit http://www.CFUGCNY.org Hope to see you there, BJ _

Excel Web Queries

2002-05-10 Thread Thane Sherrington
I'm setting up web queries to pull data from pages created with CF, but my problem is that I can't create dynamic queries (I can pass the URL with URL variables, but I have no way to allow the user to enter different variables.) Anyone know how to do this? T _

CFObject - Excel hosting

2002-05-10 Thread Thane Sherrington
Can someone suggest to me a good host that offers the ability to use CFObject with Excel? T __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. FAQ: http://www.t

RE: ANNOUNCEMENT: Northern Alberta Macromedia User's Group

2002-05-10 Thread Shawn Grover
Anyone know if there is a user group in Calgary? Shawn Grover -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, May 10, 2002 9:53 AM To: CF-Talk Subject: ANNOUNCEMENT: Northern Alberta Macromedia User's Group Northern Alberta Macromedia User's Group W

Re: ANNOUNCEMENT: Northern Alberta Macromedia User's Group

2002-05-10 Thread Howie Hamlin
Calgary? Talk about "Cold" Fusion! - Original Message - From: "Shawn Grover" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, May 10, 2002 12:46 PM Subject: RE: ANNOUNCEMENT: Northern Alberta Macromedia User's Group > Anyone know if there is a user group in Calgar

RE: CFAuthorize tag / authorize.net

2002-05-10 Thread Eric Mathews
Ditto here. We use the free version. No problems. -Original Message- From: Kevin Cundick [mailto:[EMAIL PROTECTED]] Sent: Friday, May 10, 2002 12:26 PM To: CF-Talk Subject: RE: CFAuthorize tag / authorize.net This is correct. I use this free version and it has worked well. Kevin C

RE: How Do I Flip A Table?

2002-05-10 Thread Nathan Stanford
So what was the solution that actually worked? Nathan > -Original Message- > From: Dave Babbitt [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 10, 2002 9:33 AM > To: CF-Talk > Subject: How Do I Flip A Table? > > > Hi Guys! > > How do I turn a CFQUERY record set that CFDUMPs like this:

Excel Web Queries

2002-05-10 Thread Thane Sherrington
I'm setting up web queries to pull data from pages created with CF, but my problem is that I can't create dynamic queries (I can pass the URL with URL variables, but I have no way to allow the user to enter different variables.) Anyone know how to do this? T

CFObject - Excel hosting

2002-05-10 Thread Thane Sherrington
Can someone suggest to me a good host that offers the ability to use CFObject with Excel? T __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. FAQ: http://www.

Is this right?

2002-05-10 Thread Chakka, Sudheer
Hi, How do i insert one '"' into a html file. Should be I using some ASCII value for that.If so can any one tell me the ascii value of that Any help on this is apprecited!!! Sudheer Chakka __ Structure your ColdFus

RE: Is this right?

2002-05-10 Thread Shawn McKee
" -Original Message- From: Chakka, Sudheer [mailto:[EMAIL PROTECTED]] Sent: Friday, May 10, 2002 11:59 AM To: CF-Talk Subject: Is this right? Hi, How do i insert one '"' into a html file. Should be I using some ASCII value for that.If so can any one tell me the ascii value of

Re: session cookies to expire immediately on browser close

2002-05-10 Thread Jas Panesar
Wow, this looks great! I was just curious, would it be difficult to do the same implementation without the use of cookies for the session? I have a few applications where I append the CFID and CFTOKEN to the URL and pass it through as such.. I was thinking something like this might do the tr

How can I do this???

2002-05-10 Thread Chakka, Sudheer
Hi, ... As soon as I execute this CFApplicationServer processor usage % is shooting upto 90 and 100. The last '>' is till in blue color, making the next lines as part of target string and screwing from not executing my next part of code. Any help on this appreciated. Thanks, Sudhe

Re: refreshing CFID + CFTOKEN with client-side JavaScript?

2002-05-10 Thread Dina Hess
> - Are CFID and CFTOKEN values within one cookie or separate cookies? the cfid and cftoken cookies (variables) are stored within one file on the client browser. > - If separate, do both have their expire value set to the session > timeout - meaning both would need to be refreshed to refresh the

RE: refreshing CFID + CFTOKEN with client-side JavaScript?

2002-05-10 Thread Dave Watts
> in your cfapplication tag, you can setclientcookies='no', then > set cookie-scoped cfid and cftoken variables equal to the > session-scoped cfid and cftoken variables. since cookie scope > does not persist, your cookies will remain intact only until the > browser is closed. > > this technique e

RE: ANNOUNCEMENT: Northern Alberta Macromedia User's Group

2002-05-10 Thread Timothy Heald
HEHE, Alberta. I used to live in Grand Center, and in Cold Lake :) Tim Heald ACP/CCFD :) Application Development www.schoollink.net > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 10, 2002 11:53 AM > To: CF-Talk > Subject: ANNOUNCEM

RE: ANNOUNCEMENT: Northern Alberta Macromedia User's Group

2002-05-10 Thread Shawn Grover
Only last week... we're above freezing again... LOL -Original Message- From: Howie Hamlin [mailto:[EMAIL PROTECTED]] Sent: Friday, May 10, 2002 10:48 AM To: CF-Talk Subject: Re: ANNOUNCEMENT: Northern Alberta Macromedia User's Group Calgary? Talk about "Cold" Fusion! - Original

RE: getting NAME attribute of a CFFORM ancestor

2002-05-10 Thread Dave Watts
> any body know if it's possible to get, programmatically, > the value of the Name attribute of an ancestor CFFORM tag... > that is something like this pseudocode (simplified use), > > > > > > > > > I tried using getBaseTagData("CFFORM") but apparently (in > CF's wor

RE: clustering Cold Fusion

2002-05-10 Thread Dave Watts
> Anyone have any good links or resources for building > a clustered Cold Fusion environment? > > Have a potential project coming up where I can > see the need to do something more enterprise level - > db/email/storage/www all on separate boxes... Fortunately, there's very little that's CF-spec

Re: Create Thumb from IMG upload

2002-05-10 Thread Lewis Sellers
>> I need a CF Tag that creates a thumb of an image I upload. Then saves the >> thumb in folder thumb and image in folder image. Do you know of any. Btw, I was planning on putting out of a free (special edition) of INMaL anyway soon just to beta test the file read/write code. What file formats w

RE: Form.FIELDNAME - error!!!!

2002-05-10 Thread Dave Watts
> I wouldn't call that bad practice, It should actually be > called good practice (at least in my book). You are setting > a variable and the ## around the variable show that it is > a variable, makes for easier reading. Now, ## on the set > side would be considered bad practice. The use of p

Re: How can I do this???

2002-05-10 Thread Douglas Brown
Not sure exactly what your trying to do, but I took a guess Douglas Brown Email: [EMAIL PROTECTED] - Original Message - From: "Chakka, Sudheer" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, May 10, 2002 10:31 AM Subject: How can I do this??? > Hi, > > >

RE: How can I do this???

2002-05-10 Thread Bryan Love
double quotes must be escaped... OR, if you use double quoted strings... +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst Telecommunication Systems [EMAIL PROTECTED] +-

AS400 does anyone use it? RE: AS400 Driver to Unix and or NT Re source Problem

2002-05-10 Thread Nathan Stanford
AS400 does anyone use it? > -Original Message- > From: Nathan Stanford [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 10, 2002 10:39 AM > To: CF-Talk > Subject: AS400 Driver to Unix and or NT Resource Problem > > > Does anyone have ColdFusion on Unix connected to the AS400 > doing M

RE: Form.FIELDNAME - error!!!!

2002-05-10 Thread Dave Watts
> > The speed issue? About the same difference as > > The main reason I would use switch over if is to make it > easer to read, and easier to maintain. That it is faster > is just a bonus. This implies that CFSWITCH is always easier to read and maintain, and always faster. I wouldn't agree

RE: SQL Question

2002-05-10 Thread Dave Watts
> > Is the *= universal syntax (MS SQL, Access, Oracle, MySQL > > ect..?) > > it's my understanding that the *= syntax is legacy syntax; i > believe you'll want ansi syntax to effect compatibility with a > most dbms's: > > SELECT h.id, h.header, l.link, l.link_title > FROM headers h LEFT JOIN li

RE: Read Data from Buffer

2002-05-10 Thread Dave Watts
> Is there a handy way to read data from the buffer in CF on a > form submit? I'm not sure what buffer you're referring to. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 _

RE: AS400 does anyone use it? RE: AS400 Driver to Unix and or N T Re source Problem

2002-05-10 Thread Robert Everland
I use it, but I don't have the problem you're having. Robert Everland III Dixon Ticonderoga Web Developer Extraordinaire -Original Message- From: Nathan Stanford [mailto:[EMAIL PROTECTED]] Sent: Friday, May 10, 2002 2:19 PM To: CF-Talk Subject: AS400 does anyone use it? RE: AS400 Driver

Re: SQL Question

2002-05-10 Thread Dina Hess
so are you saying that even though you use ansi joins, you should probably be using *= for portability? ~ dina - Original Message - From: "Dave Watts" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, May 10, 2002 1:32 PM Subject: RE: SQL Question > > > Is the *= uni

RE: Read Data from Buffer

2002-05-10 Thread Tracy Bost
The binary stream from a form submit on a fdf file... An easy way to do it in ASP is to use the Request.BinaryRead(Request.TotalBytes) function. Can not find a coldfusion function to do this outside writing a cfx tag *** REPLY SEPARATOR *** On 5/10/2002 at 2:41 PM Dave Watt

RE: Fw: Oh man, no more HomeSite/CFStudio, for real :-(

2002-05-10 Thread Dave Watts
> As the list has influenced me not to look at DWMX right > now ... I'd argue that you're making a mistake here. Take a look at it; form your own opinions; see whether it works for you and if not, let MM know why not. I'd largely felt the same way about it - I just wasn't that interested in it,

Conditional Query loop

2002-05-10 Thread Smith, Daron [PA]
Is it possible to loop over a query until a condition is met? Specifically, I am returning search results, if a certain category exists i want to display a title, if no records for that category exist I do not want to display the title. However I only want to display the title one time if the re

RE: Read Data from Buffer

2002-05-10 Thread Mark A. Kruger - CFG
I don't think this can be done, but you could use the GetHTTPRequestData( ) function. It returns a structure with headers and content. If you are trying to figure out the size (like the file length for an uploaded file), you could check the length of Content key. -mk -Original Message---

RE: Which Is Faster, multiple CFQuery or Multiple Query of a Quer y?

2002-05-10 Thread Dave Watts
> In theory the use of query or query should perform > better - the actual difference you see will be > influenced by amount of data actually being returned, > network traffic and so onyou can always test it > to see the actual difference. One big advantage that > CFSQL offers is that yo

Re: refreshing CFID + CFTOKEN with client-side JavaScript?

2002-05-10 Thread Dina Hess
yes, those are both good points to consider. thank you for the clarification. :) ~ dina - Original Message - From: "Dave Watts" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, May 10, 2002 12:49 PM Subject: RE: refreshing CFID + CFTOKEN with client-side JavaScript?

Re: Conditional Query loop

2002-05-10 Thread Jochem van Dieten
Smith, Daron [PA] wrote: > Is it possible to loop over a query until a condition is met? Specifically, > I am returning search results, if a certain category exists i want to > display a title, if no records for that category exist I do not want to > display the title. However I only want to dis

RE: clustering Cold Fusion

2002-05-10 Thread Jeffry Houser
At 02:04 PM 5/10/2002 -0400, you wrote: > > Anyone have any good links or resources for building > > a clustered Cold Fusion environment? > > > > Have a potential project coming up where I can > > see the need to do something more enterprise level - > > db/email/storage/www all on separate boxes..

weird query to excel problem

2002-05-10 Thread Stocke Terri
Hey everyone! I'm on a tight deadline to implement a query to excel feature for a customer. One of our developers used the query2excel custom tag to do this. It works great for her, and it works great for another person in our department who tested it. But when I try to use it, I find the followi

  1   2   >