CGI variables -<CFIF CGI.HTTP_USER_AGENT IS IE8 OR IE9>
I need to find code that if a user is using Internet explorer 5, Internet explorer 6, Internet explorer 7 or Internet explorer 8 they get redirected to one page and if the are using any other browser including IE9 they go to another.
Something like this
<CFIF CGI.HTTP_USER_AGENT IS IE5 OR CGI.HTTP_USER_AGENT IS IE6 OR CGI.HTTP_USER_AGENT IS IE7 OR CGI.HTTP_USER_AGENT IS IE8 >
<cflocation go here>
<cfelse>
<cflocation go here>
</cfif>
Any help ?
