RE: basic question

2002-11-12 Thread Adam Reynolds
Your browser might be interpreting or as a character (like nbsp;). This has happened to me in the past with specific versions of browsers -Original Message- From: Tim Laureska [mailto:hometeam;goeaston.net] Sent: 12 November 2002 02:05 To: CF-Talk Subject: RE: basic question

RE: basic question

2002-11-12 Thread Tim Laureska
Browser is IE6.0 -Original Message- From: Adam Reynolds [mailto:adam;craze.co.uk] Sent: Tuesday, November 12, 2002 4:41 AM To: CF-Talk Subject: RE: basic question Your browser might be interpreting or as a character (like nbsp;). This has happened to me in the past with specific

Re: basic question

2002-11-11 Thread Dan Blickensderfer
You need to place an between your variables and remove your single quotes. Like this: a href=test.cfm?category=5orcategory2=5listing page/a Dan - Original Message - From: Tim Laureska [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, November 11, 2002 8:09 PM Subject:

Re: basic question

2002-11-11 Thread Howie Hamlin
Sure, try: a href=test.cfm?category=5category2=5listing page/a HTH, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com - 631-737-4668 x101 inFusion Mail Server (iMS) - The Award-winning, Intelligent Mail Server Find out how iMS Stacks up to the

RE: basic question

2002-11-11 Thread Mark A. Kruger - CFG
Tim, Try a href=test.cfm?category=5category2=5listing page/a -Original Message- From: Tim Laureska [mailto:hometeam;goeaston.net] Sent: Monday, November 11, 2002 7:10 PM To: CF-Talk Subject: basic question Is it possible to do something like this to pass multiple variables thru a

RE: basic question

2002-11-11 Thread Mike Chambers
try: a href=test.cfm?category=5orcategory2=5listing page/a is that what you were trying to do? mike chambers [EMAIL PROTECTED] -Original Message- From: Tim Laureska [mailto:hometeam;goeaston.net] Sent: Monday, November 11, 2002 8:10 PM To: CF-Talk Subject: basic question

RE: basic question

2002-11-11 Thread Tim Laureska
Thanks Dan and Howie for some reason, using worked but or didn't -Original Message- From: Howie Hamlin [mailto:howie;coolfusion.com] Sent: Monday, November 11, 2002 8:22 PM To: CF-Talk Subject: Re: basic question Sure, try: a href=test.cfm?category=5category2=5listing page/a HTH

RE: basic question

2002-11-11 Thread Mosh Teitelbaum
Laureska [mailto:hometeam;goeaston.net] Sent: Monday, November 11, 2002 9:05 PM To: CF-Talk Subject: RE: basic question Thanks Dan and Howie for some reason, using worked but or didn't -Original Message- From: Howie Hamlin [mailto:howie;coolfusion.com] Sent: Monday, November 11

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Clint Tredway
cfif query.recordcount gt 0 no records found cfelse display records /cfif HTH -Original Message- From: Tim Laureska [mailto:hometeam;goeaston.net] Sent: Thursday, October 31, 2002 7:27 AM To: CF-Talk Subject: basic question - testing for no reuslts from query I'm

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Adrian Lynch
cfif queru.RecordCount EQ 0 No results cfelse #results# /cfif -Original Message- From: Tim Laureska [mailto:hometeam;goeaston.net] Sent: 31 October 2002 13:27 To: CF-Talk Subject: basic question - testing for no reuslts from query I'm ashamed to say I've been banging my head on this

Re: basic question - testing for no reuslts from query

2002-10-31 Thread Jochem van Dieten
Tim Laureska wrote: I'm ashamed to say I've been banging my head on this for an hour. what is a simple way to code a statement that displays a message when a query produces no results.. like: Use queryname.recordcount Jochem

RE: basic question - testing for no results from query

2002-10-31 Thread Timothy Heald
cfif queryname.recordcount showstuff /cfif Now if your using aggregate functions (like max() min() avg()) you need to check for a len in the field your looking for, because the record count will be 1 even if it's just for an empty field, so I will do: cfif len(queryname.columnname)

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Tony Weeg
cfif queryname.RecordCount LT 1 Nothing here to show ya cfelse BOO! its halloween, something has been returned! /cfif ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337 -Original Message- From: Tim

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Robertson-Ravo, Neil (REC)
or just : cfif query.recordcount or you could use ListLen(ValueList(query,,)) -Original Message- From: Clint Tredway [mailto:ctredway;fishermenstudios.com] Sent: 31 October 2002 13:30 To: CF-Talk Subject: RE: basic question - testing for no reuslts from query cfif query.recordcount gt

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Tony Weeg
: RE: basic question - testing for no reuslts from query cfif query.recordcount gt 0 no records found cfelse display records /cfif HTH -Original Message- From: Tim Laureska [mailto:hometeam;goeaston.net] Sent: Thursday, October 31, 2002 7:27 AM To: CF-Talk Subject: basic

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Clint Tredway
Man, I have been up way to long ;) if query.recordcount eq 0 no records found -Original Message- From: Clint Tredway [mailto:ctredway;fishermenstudios.com] Sent: Thursday, October 31, 2002 7:30 AM To: CF-Talk Subject: RE: basic question - testing for no reuslts from query

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Clint Tredway
Ya, that's what I get for thinking on no sleep.. I corrected it :) -Original Message- From: Tony Weeg [mailto:tony;navtrak.net] Sent: Thursday, October 31, 2002 7:38 AM To: CF-Talk Subject: RE: basic question - testing for no reuslts from query clint. this is the opposite of what he

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Tim Laureska
Many thanks for the responses... checking for query.recordcount EQ 0 works fine... just didn't know the syntax -Original Message- From: Clint Tredway [mailto:ctredway;fishermenstudios.com] Sent: Thursday, October 31, 2002 8:44 AM To: CF-Talk Subject: RE: basic question - testing

Re: basic question - testing for no reuslts from query

2002-10-31 Thread Stephen Moretti
Neil!!! Slap wristies!!! ;o) or just : cfif query.recordcount record count is numeric not boolean! Yes OK, so CF isn't typed _yet_ and will take anything other than 0 to be true, but it would be better to write it correctly, so your application is more readable and won't fall over if CF

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Robertson-Ravo, Neil (REC)
sorry :-) I like to use and abuse it typelessness -Original Message- From: Stephen Moretti [mailto:stephen;cfmaster.co.uk] Sent: 31 October 2002 14:07 To: CF-Talk Subject: Re: basic question - testing for no reuslts from query Neil!!! Slap wristies!!! ;o) or just : cfif

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Robertson-Ravo, Neil (REC)
its a pretty bug IF though, is there rumours banting around that it is to become a typed language... -Original Message- From: Stephen Moretti [mailto:stephen;cfmaster.co.uk] Sent: 31 October 2002 14:07 To: CF-Talk Subject: Re: basic question - testing for no reuslts from query Neil

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Everett, Al
Errr... cfif queryName.RecordCount EQ 0 .. -Original Message- From: Tim Laureska [mailto:hometeam;goeaston.net] Sent: Thursday, October 31, 2002 8:27 AM To: CF-Talk Subject: basic question - testing for no reuslts from query I'm ashamed to say I've been banging my head on this

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Tony Weeg
: Clint Tredway [mailto:ctredway;fishermenstudios.com] Sent: Thursday, October 31, 2002 8:44 AM To: CF-Talk Subject: RE: basic question - testing for no reuslts from query Ya, that's what I get for thinking on no sleep.. I corrected it :) -Original Message- From: Tony Weeg [mailto:tony

RE: basic question

2001-05-23 Thread Thomas Chiverton
I downloaded an encrypted custom tag. When I make a call to the tag it shows up all encrypted on the output page. How do you make an encrypted tag display correctly. Do your other ColdFusion files work OK ? ~~ Structure your ColdFusion code

Re: basic question

2001-05-23 Thread sebastian palmigiani
Yes they do. I call an encrypted tag like cf_counter which does not need any attributes and what gets outputted is the encryption. Sebastian on 5/23/01 4:04 AM, Thomas Chiverton at [EMAIL PROTECTED] wrote: I downloaded an encrypted custom tag. When I make a call to the tag it shows up all