Answered
Multiple browser sniffing
I wrote a script for browser sniffing, but I need to modify
it so IE and Opera see the same thing. Can someone tell me if I am
writting this correctly?
<cfif #CGI.HTTP_USER_AGENT# CONTAINS "MSIE *.*","Opera *.*">
<b>they see this code</b>
<cfelse>
<b>they see this code</b>
</cfif>
is this correct for these 2 browsers to see the same thing?
Thank you

<cfif #CGI.HTTP_USER_AGENT# CONTAINS "MSIE *.*","Opera *.*">
<b>they see this code</b>
<cfelse>
<b>they see this code</b>
</cfif>
is this correct for these 2 browsers to see the same thing?
Thank you