Search the web
Sign In
New User? Sign Up
coldfusion-howto · ColdFusion Tips Tutorial Help Questions
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 33743 - 33772 of 44527   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
33743
Hi, is there a way to use basic authentication in <cfscript>ws = CreateObject("webservice", "http://www.345345.com/34534534");</cfscript> ? br Charlie ...
Karl Schaubmair
charlie_scha...
Offline Send Email
Jul 1, 2005
8:18 am
33744
Dear All, There is a Job opening in Coldfusion for one of our client in Chennai. Skills required: Coldfusion. Experience required: 3-6yrs. Location: Chennai. ...
r_result
Offline Send Email
Jul 1, 2005
12:01 pm
33745
Actually, I thought about this one. was looking for a shorter and faster query. turned out this may be the only possible way of writing the query, without...
A Abaya
aj_abaya
Offline Send Email
Jul 1, 2005
1:24 pm
33746
I am trying to use the following is defined statement on a session variable that may or may not have been created based on the path that the user has taken to...
Mcerabona@...
mcerabona
Offline Send Email
Jul 1, 2005
1:24 pm
33747
try <cfif IsDefined("session.EmailContactID")> On Fri, 1 Jul 2005 09:20:07 EDT, Mcerabona wrote ... http://www.realvaluehosting.com ... Jason Radosevich ...
Jason Radosevich
j_abell
Offline Send Email
Jul 1, 2005
1:35 pm
33748
Use this: <CFIF isDefined("session.EmailContactID")> ... Rob Baker eastcoastSURF.com live surf cams and surf reports __________________________________ Yahoo!...
Rob Baker
netposerx
Offline Send Email
Jul 1, 2005
1:36 pm
33749
Use the following tree steps: 1. Assign the value into a string using whatever method you like. 2. initial the clob column <cfquery ....> Insert into myTable ...
Gao, Ying (NIH/OD/DEAS)
gaoyingnc
Offline Send Email
Jul 1, 2005
1:44 pm
33750
Hi, I am working on oracle. I guess the code should still work for MySQL. See below: <cffile action="readbinary" file="#fullPath#" variable="yourdoc"> ...
Gao, Ying (NIH/OD/DEAS)
gaoyingnc
Offline Send Email
Jul 1, 2005
1:50 pm
33751
Can someone tell me the difference between isDefined and ParameterExists ? ... -- ____________________________________________________ Ernest E. Breau Jr. ...
Ernest Breau
eb_web_designs
Offline Send Email
Jul 1, 2005
1:54 pm
33752
ParameterExists is deprecated. Don't use it anymore. Use IsDefined instead. ... From: Ernest Breau [mailto:ernest.breau@...] Sent: Friday, July 01,...
Gao, Ying (NIH/OD/DEAS)
gaoyingnc
Offline Send Email
Jul 1, 2005
1:57 pm
33753
I'm currenty using the code for mouse-overs from: http://www.knopper.net/knoppix/index-en.html (Hover over a flag or download icon) I grabbed all I needed from...
Rob Baker
netposerx
Offline Send Email
Jul 1, 2005
2:11 pm
33754
Ok, but why? can you do a <cfif IsDefined(foo.bar) AND foo.bar="12"> like you can with ParameterExists, w/o an error? ... -- ...
Ernest Breau
eb_web_designs
Offline Send Email
Jul 1, 2005
2:13 pm
33755
Yes you can do it. But you should use: isDefined("foo.bar") if foo.bar is a variable. ... From: Ernest Breau [mailto:ernest.breau@...] Sent: Friday,...
Gao, Ying (NIH/OD/DEAS)
gaoyingnc
Offline Send Email
Jul 1, 2005
2:16 pm
33756
I think "parameterExists" has been deprecated since CF 5. Another way to do what you want is: At the top of your template (this avoids the isDefined cod: ...
Rob Baker
netposerx
Offline Send Email
Jul 1, 2005
2:21 pm
33757
well yes i know that one. I am just wondering how one is better than the other? ... -- ____________________________________________________ Ernest E. Breau Jr....
Ernest Breau
eb_web_designs
Offline Send Email
Jul 1, 2005
2:25 pm
33758
You'll have to ask Kevin Lynch :p ... hoogroups.com?subject=Unsubscribe<http://hoogroups.com/?subject=Unsubscribe> ... ...
Rob Baker
netposerx
Offline Send Email
Jul 1, 2005
2:30 pm
33759
I guess i should know who that is lol ... -- ____________________________________________________ Ernest E. Breau Jr. Coldfusion Developer home: (508) 967-0448...
Ernest Breau
eb_web_designs
Offline Send Email
Jul 1, 2005
2:32 pm
33760
LOL... Kevin Lynch is the Executive Vice President and Chief Software Architect at Macromedia. ...
Rob Baker
netposerx
Offline Send Email
Jul 1, 2005
2:58 pm
33761
I use triga tree and foudn this on their site it looks exactly like what netflix is using http://www.softcomplex.com/products/tigra_hints/demo.html ... -- ...
Ernest Breau
eb_web_designs
Offline Send Email
Jul 1, 2005
3:09 pm
33762
Well i like ParameterExists I used it everywhere, I will continue to use it untill they remove it. ... -- ____________________________________________________ ...
Ernest Breau
eb_web_designs
Offline Send Email
Jul 1, 2005
3:18 pm
33763
Ernest, Thank you. Thank you. Thank you. After spending the last 12 hours trying to re-build the working JavaScript that I erased, I finally figured out it...
didebugs
Online Now Send Email
Jul 1, 2005
3:54 pm
33764
wow, and it was a guess too lol ... -- ____________________________________________________ Ernest E. Breau Jr. Coldfusion Developer home: (508) 967-0448 ...
Ernest Breau
eb_web_designs
Offline Send Email
Jul 1, 2005
4:01 pm
33765
You do not put the item inside #'s but inside double quotes isDefined("session.xyz") ... From: Mcerabona@... To: coldfusion-howto@yahoogroups.com Sent:...
George Farnsworth
georgefarnsw...
Offline Send Email
Jul 1, 2005
4:30 pm
33766
Also, make sure that you have BLOB/CLOB checked in your MX Datasource configuration. -John ... From: coldfusion-howto@yahoogroups.com ...
Bartlett, John
wyntermoonwolf
Offline Send Email
Jul 1, 2005
4:55 pm
33767
Kim, What you suggested is exactly what I need to do. I followed Ernest's suggestion and got the code to work from the index.cfm to the href. Now, how do I set...
didebugs
Online Now Send Email
Jul 1, 2005
5:04 pm
33768
DI - It's been awhile since I set up the structure for this ap, but I'll try to explain how it's done.... <!--- 1 - Set up your Application.cfm page to accept...
Netling, Kim
kikinetling
Offline Send Email
Jul 1, 2005
5:49 pm
33769
Anyone know a way to have a CFTreeItem pre-selected? I'm looking for something similar to the selected attribute in CFSelect. Bruce...
phillips1021
Offline Send Email
Jul 1, 2005
8:48 pm
33770
ColdFusion Hosting Providers ColdFusion Hosting Providers' List brought to you by *** ColdFusion-HowTo: Yahoo's No. 1 and the biggest group for ColdFusion...
coldfusion-howto@yaho...
Send Email
Jul 1, 2005
11:03 pm
33771
I don't think its possible because you would need access to the init() method. _____ From: coldfusion-howto@yahoogroups.com ...
Dan Plesse
empiricallys...
Offline Send Email
Jul 2, 2005
1:58 am
33772
OK. I'll give it a try and let you know in a few days how I did. Thanks, Di ... try to ... variables with ... folder of ... issue ---> ... have found ... ...
didebugs
Online Now Send Email
Jul 2, 2005
11:39 am
Messages 33743 - 33772 of 44527   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help