I would like to redirect the user once a certain criteria has been met. I know that you can do this with the <cfhttp> tag, but how do you do it when you've got it in between <cfscript> tags?
<cfscript>
if (session.textonly){
redirect to http:/blah... blah...
}else{
redirect to http:/blah... blah...
}
</cfscript>
Is there some command you can use to redirect when you have code in the above format? Thanks!
<cfscript>
if (session.textonly){
redirect to http:/blah... blah...
}else{
redirect to http:/blah... blah...
}
</cfscript>
Is there some command you can use to redirect when you have code in the above format? Thanks!