Ask a Question related to Macromedia ColdFusion, Design and Development.
-
redman2215 #1
CFIF statements-why isnt it working???
I am trying to only allow a handful of URLs to pass though, otherwise relocate
to home page..This code isnt workign however...any help woudl be
appreciated...her is code:
<cfinclude template="/clink_includes/global.cfm">
<cfparam name="capwizurl" default="http://capwiz.com/fof/home/">
<cfif capwizurl NEQ "http://capwiz.com/fof/home/">
<cflocation url="http://www.family.org/cforum/">
<cfelseif capwizurl NEQ "http://capwiz.com/fof/dbq/officials/">
<cflocation url="http://www.family.org/cforum/">
<cfelseif capwizurl NEQ "http://capwiz.com/fof/bio/?id=20004&lvl=F">
<cflocation url="http://www.family.org/cforum/">
<cfelseif capwizurl NEQ
"http://capwiz.com/fof/officials/membersearch/?state=LA&searchlast=&lvl=state">
<cflocation url="http://www.family.org/cforum/">
</cfif>
thanks,
steve
redman2215 Guest
-
My Code isnt working, why?!?!
I corrrected the issue with the delete command. That was a stupid issue on my behalf, as i'm sure you'll see.... However, still battleing the... -
Reposting: wth this isnt working
Ok sorry i messed the other one up and i cant edit it, so ill post it again but when i comes to the content area, "i will be using php with a php... -
One custom WebControl using it at several webpage with diffirent behaviour isnt working
Dear all, I searched a lot on internet/newsgroups, without any correct answer for my problem. The problem is: ================ I have a... -
Contribute and <cfif><cfelse> statements
I'm in the process of building some web page templates trhat will be used within Contribute by copy writers. I have a <cfif><cfelse> based function... -
Please help!! ASP.NET isnt working!
Hi, I just installed IIS and when I tried browsing the link: http://localhost it says: "you are not authorized to view this page" HTTP... -
mpwoodward *TMM* #2
Re: CFIF statements-why isnt it working???
On 2005-06-24 15:49:31 -0500, "redman2215" <webforumsuser@macromedia.com> said:
> I am trying to only allow a handful of URLs to pass though, otherwise
> relocate to home page..This code isnt workign however...any help woudl
> be appreciated...her is code:
>
>
> <cfinclude template="/clink_includes/global.cfm">
> <cfparam name="capwizurl" default="http://capwiz.com/fof/home/">
>
>
> <cfif capwizurl NEQ "http://capwiz.com/fof/home/">
> <cflocation url="http://www.family.org/cforum/">
>
> <cfelseif capwizurl NEQ "http://capwiz.com/fof/dbq/officials/">
> <cflocation url="http://www.family.org/cforum/">
>
> <cfelseif capwizurl NEQ "http://capwiz.com/fof/bio/?id=20004&lvl=F">
> <cflocation url="http://www.family.org/cforum/">
>
> <cfelseif capwizurl NEQ
> "http://capwiz.com/fof/officials/membersearch/?state=LA&searchlast=&lvl=state">I think you're going to want to flip this on its head and use EQ in>
> <cflocation url="http://www.family.org/cforum/">
>
> </cfif>
>
> thanks,
> steve
your conditionals instead of NEQ. Take a look at your first cfif. If
the URL is anything OTHER THAN [url]http://capqiz.com/fof/home[/url], it's going
to go to [url]http://www.family.org/cforum[/url]. So if for example capwizurl is
set to the value of the second conditional, it'll never get there
because it won't make it past the first conditional.
Matt
--
Matt Woodward
[email]mpwoodward@gmail.com[/email]
Team Macromedia - ColdFusion
mpwoodward *TMM* Guest



Reply With Quote

