RE: equivalent of isDefined in ASP?

2006-10-19 Thread Bobby Hartsfield
To: CF-Talk Subject: RE: equivalent of isDefined in ASP? You might be right. Seems that I used to use it for query objects and then at the end set the object to Nothing. -Original Message- From: Dawson, Michael [mailto:[EMAIL PROTECTED] Sent: Thursday, October 19, 2006 11:09 AM To:

RE: equivalent of isDefined in ASP?

2006-10-19 Thread Bobby Hartsfield
You might be right. Seems that I used to use it for query objects and then at the end set the object to Nothing. -Original Message- From: Dawson, Michael [mailto:[EMAIL PROTECTED] Sent: Thursday, October 19, 2006 11:09 AM To: CF-Talk Subject: RE: equivalent of isDefined in ASP? Doesn&#

RE: equivalent of isDefined in ASP?

2006-10-19 Thread Dawson, Michael
Doesn't that work only for objects? -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Thursday, October 19, 2006 8:49 AM To: CF-Talk Subject: RE: equivalent of isDefined in ASP? It's been a while but I believe that's it (for VB)... If myvar Is

RE: equivalent of isDefined in ASP?

2006-10-19 Thread Bobby Hartsfield
It's been a while but I believe thatÂ’s it (for VB)... If myvar Is Nothing Then Do something End If -Original Message- From: Deanna Schneider [mailto:[EMAIL PROTECTED] Sent: Thursday, October 19, 2006 9:30 AM To: CF-Talk Subject: Re: equivalent of isDefined in ASP? Isn't i

Re: equivalent of isDefined in ASP?

2006-10-19 Thread Deanna Schneider
Isn't it this: if (myObject Is Nothing) On 10/18/06, Ray Champagne <[EMAIL PROTECTED]> wrote: > Anybody got an idea? Google isn't helping me out right now. (VB) > > ~| Introducing the Fusion Authority Quarterly Update. 80 pages

RE: equivalent of isDefined in ASP?

2006-10-18 Thread Dawson, Michael
alent of isDefined in ASP? Yea, I've been reading about this Option Explicit thing, and even though I never have put <% Option Explicit %> anywhere in the script(s), it's acting like it is in there somewhere. Like doing this: <% Response.write(boo)%> throws an error saying

RE: equivalent of isDefined in ASP?

2006-10-18 Thread Dawson, Michael
isDefined in ASP? Did the previous guy use "option explicit"? ~Brad -Original Message- From: Dawson, Michael [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 18, 2006 1:10 PM To: CF-Talk Subject: RE: equivalent of isDefined in ASP? I'm not an ASP guy, but the previous guy was

RE: equivalent of isDefined in ASP?

2006-10-18 Thread Ray Champagne
27;boo' is not declared". Weird. > -Original Message- > From: Brad Wood [mailto:[EMAIL PROTECTED] > Sent: Wednesday, October 18, 2006 2:23 PM > To: CF-Talk > Subject: RE: equivalent of isDefined in ASP? > > Did the previous guy use "option explicit"? > &g

RE: equivalent of isDefined in ASP?

2006-10-18 Thread Andy Matthews
So just the act of testing a variable caused it to exist? Interesting. -Original Message- From: Dawson, Michael [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 18, 2006 1:10 PM To: CF-Talk Subject: RE: equivalent of isDefined in ASP? I'm not an ASP guy, but the previous gu

RE: equivalent of isDefined in ASP?

2006-10-18 Thread Brad Wood
Did the previous guy use "option explicit"? ~Brad -Original Message- From: Dawson, Michael [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 18, 2006 1:10 PM To: CF-Talk Subject: RE: equivalent of isDefined in ASP? I'm not an ASP guy, but the previous guy was. >Fr

RE: equivalent of isDefined in ASP?

2006-10-18 Thread Dawson, Michael
" and then did what he had to do. M!ke -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 18, 2006 12:54 PM To: CF-Talk Subject: RE: equivalent of isDefined in ASP? Yea, that won't quite work, and what you're doing really isn't like

Re: equivalent of isDefined in ASP?

2006-10-18 Thread Will Tomlinson
Says alot about asp don't it? ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.

RE: equivalent of isDefined in ASP?

2006-10-18 Thread Ray Champagne
to "", then it will overwrite the variable being passed into the page...thus defeating the purpose. > -Original Message- > From: Jake Churchill [mailto:[EMAIL PROTECTED] > Sent: Wednesday, October 18, 2006 1:45 PM > To: CF-Talk > Subject: Re: equivalent of isD

Re: equivalent of isDefined in ASP?

2006-10-18 Thread Jake Churchill
Do the equivalent of cfparam and set it to "" at the top. Then, just test to see what it's value is. variable <> "" Ray Champagne wrote: > Anybody got an idea? Google isn't helping me out right now. (VB) > > > > Ray > > > > ~