I tried with IE 5.1.7 for Mac, and it doesn't work either. The website is
probably a bunch of ActiveX madness, so you'll need to access it with a PC.
But, have you tried FireFox or Mozilla (www.mozilla.org) and changing the
user agent string to mimic IE 6 on a PC? If the website is blocking any
Non-IE for Windows browsers, this might work. It won't fix the problem if,
as I said, the website is a bunch of ActiveX controls (which is not
available on the Mac).
-Jon
> Okay, I'm new to this newsgroup thing, but here is my problem, I am
> trying to open up http://retail.microsoft.com and everytime I try, it
[quoted text clipped - 6 lines]
> Thanks for the help
> Craig
Craig Sharp - 20 Jun 2004 17:45 GMT
Thanks for the help
On 6/20/04 9:19 AM, in article BCFB1539.16090%spam@shastasunset.com, "Jon"
<spam@shastasunset.com> wrote:
> I tried with IE 5.1.7 for Mac, and it doesn't work either. The website is
> probably a bunch of ActiveX madness, so you'll need to access it with a PC.
[quoted text clipped - 16 lines]
>> Thanks for the help
>> Craig
Harri Mellin - 20 Jun 2004 20:41 GMT
> I tried with IE 5.1.7 for Mac, and it doesn't work either. The website is
> probably a bunch of ActiveX madness, so you'll need to access it with a PC.
[quoted text clipped - 16 lines]
> > Thanks for the help
> > Craig
it's a javascript that only redirects msie for windows and sends
everyone else to a 404 page
<SCRIPT language="JavaScript">
<!--
var userAgent = navigator.userAgent;
var MSIEIndex = userAgent.indexOf("MSIE");
if (userAgent.indexOf("Win") == -1 ||
userAgent.indexOf("MSIE") == -1 ||
userAgent.substring((MSIEIndex + 5),(MSIEIndex + 8)) < 5.5)
window.location.replace("/homepage/default.htm");
//-->
</SCRIPT>

Signature
-------------------------------------------
Swedish Webcams <http://www.webcams.zap.to>
-------------------------------------------
Jon - 21 Jun 2004 15:51 GMT
> it's a javascript that only redirects msie for windows and sends
> everyone else to a 404 page
[quoted text clipped - 9 lines]
> //-->
> </SCRIPT>
Then changing the user agent string on the browser should get you past the
script. No guarantee that the correct page will work outside of Windows,
though.
-Jon