Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Detections of Browsers and Versions

Status
Not open for further replies.

lmarshall

MIS
Jun 11, 2002
108
US
I have 2 sites and coding outsite. The code is called code.htm and looks like this:
<!--#if expr=&quot;${HTTP_USER_AGENT}= /MSIE/&quot;-->
<meta HTTP-EQUIV=&quot;refresh&quot;
CONTENT=&quot;0; URL=home.htm&quot;>
<!--#set var=
&quot;bver&quot; value=&quot;IE&quot;-->
<!--#elif expr=&quot;${HTTP_USER_AGENT} =/Mozilla/&& $bver !=/IE/&quot;-->
<meta HTTP-EQUI=&quot;refresh&quot;
CONTENT=&quot;0; URL=Home2/home2.htm&quot;>
<!--#else-->
<meta HTTP-EQUIV=&quot;refresh&quot;
CONTENT=&quot;0; URL= Home2/home2.htm&quot;>
<!--#endif-->
My other sites are pretty much the same but one has flash on it. I use the code site to determine if the user is using Netscape or IE because my flash needs to be transparent. It is transparent in IE but not in Netscape so I have the user directed to my nonflash site. My problem is that I have a plugin for non-flash users on my flash site (asking them to download flash) but it only works if you open that site directly and not through the site with coding. I would say forget the coding site but I need it so it won't show my flash page in Netscape because it isn't transparent.

Feel free to ask for any more details about this problem


lmarshall
PS here is my code from my flash site

<body onLoad=&quot;MM_checkPlugin('Shockwave Flash','../hometest.htm','../Home2/home2.htm',false);return document.MM_returnValue&quot;>
<!-- Tanspsarent background -Must need for converting to different resolutions--><body onLoad=&quot;MM_checkPlugin('Shockwave Flash','../hometest.htm','../Home2/home2.htm',false);return document.MM_returnValue&quot;>

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top