Frage

Ok, I thought this would be simple but I'm getting an error telling me the variable does not exist.

Here is my custom tag code:

<cfset isBot = false>
<cfif find("bot", CGI.HTTP_USER_AGENT)>
<cfset isBot = true>               
</cfif> 

Here is my page calling the custom tag:

<cf_checkBot>
<cfif isBot> 
Yes This Is A Bot!
</cfif>

So how do I use a variable outside of a customtag that was set inside of a custom tag?

Thanks :)

War es hilfreich?

Lösung

You want the Caller scope:

<cfset isBot = false>
<cfif find("bot", CGI.HTTP_USER_AGENT)>
<cfset Caller.isBot = true>               
</cfif> 

Andere Tipps

<cfset isBot = false>
<cfif find("bot", CGI.HTTP_USER_AGENT)>
<cfset **caller.**isBot = true>               
</cfif> 

You use the caller scope.

It might be better to use a function instead of a custom tag though.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top