SI
SI
discoversearch

We've detected that you're using an ad content blocking browser plug-in or feature. Ads provide a critical source of revenue to the continued operation of Silicon Investor.  We ask that you disable ad blocking while on Silicon Investor in the best interests of our community.  If you are not using an ad blocker but are still receiving this message, make sure your browser's tracking protection is set to the 'standard' level.
Technology Stocks : Intel Corporation (INTC) -- Ignore unavailable to you. Want to Upgrade?


To: Gary Ng who wrote (76948)3/22/1999 11:27:00 AM
From: ericneu  Read Replies (1) | Respond to of 186894
 
"I agreed that it is slick but it does have problem with some
site. I can access the same site with IE4, Netscape but not
IE5.

Gary"
---

Oftentimes this is the result of poorly coded web sites. Many web sites check the version of the browser to determine what features are available. All too often the code looks something like the following;

Is the browser IE? If so...

Is it IE 2.x? If so, branch to...
Is it IE 3.x? If so, branch to...
Is it IE 4.x? If so, branch to...

Instead of having a final case for "unknown version of IE", it will often "fall through" into the next section of code, causing unpredictable results.

- Eric