internet-explorer-6

Disable GZIP compression for IE6 clients

别说谁变了你拦得住时间么 提交于 2019-12-04 01:23:56
问题 We need to conditionally disable GZIP compression if user's browser is IE6 (it hangs browser for 5min) in few pages of larger site. Server is IIS7 and has compression for static content turned on - want that compression left working if user agent is not Mozilla/4.0. ASPX code sample anyone? Alternatively, code to conditionally redirect to the same page on another site (could create another virtual site with compression disabled) but need to pass all parameters (GET/POST). 回答1: Check out this

Internet Explorer 6 and Internet Explorer 7 on same computer for debugging [duplicate]

前提是你 提交于 2019-12-04 01:12:09
Possible Duplicate: Running Internet Explorer 6, Internet Explorer 7, and Internet Explorer 8 on the same machine I recently started a new job and my lead is out sick. He assigned me a bug in our code that only affects Internet Explorer 6. The developer box I'm running is Windows Server 2003 with Internet Explorer 7, though. How can I open the web page and debug it from my computer in Internet Explorer 6? Install Virtual PC (now a free download ) and one of the disk images from this page that provides you with a vanilla install of XP with the browser you want to test. Use IETester . Step 1:

HTML 5 Doctype and IE 6

杀马特。学长 韩版系。学妹 提交于 2019-12-03 18:40:36
问题 I often see this doctype declaration on some pages that I am viewing <!DOCTYPE html> I made some soft research and this is HTML 5 doctype declaration. Modern browsers can interpret this and would force to operate on Standards Mode. My question is, some of my target users are still using IE6. How will IE6 responds when I declare such doctype declaration.? Will I gain any benefit or loss in that case? Thanks. 回答1: Short answer: the HTML5 doctype works fine in IE6. Longer answer: see Henri

IE6 and Caching

久未见 提交于 2019-12-03 17:29:18
It seems that IE6 ignores any form of cache invalidation sent via http headers, I've tried setting Pragma to No Cache and setting Cache Expiration to the current time, yet in IE6, hitting back will always pull up a cached version of a page I am working on. Is there a specific HTTP Header that IE6 does listen too? Hafthor Cache-Control: private, max-age=0 should fix it. From classic ASP this is done with Response.Expires=-1 . Keep in mind when testing that just because your server is serving pages with caching turned off doesn't mean that the browser will obey that when it has an old cached

What changed in firefox 3.6 to make <ul>'s render differently?

落花浮王杯 提交于 2019-12-03 16:49:54
Edit (Solution Discovered) Thanks everyone for your help on this. The problem was an error in one of the lines of CSS that was being included (it's a large project with a huge combined CSS file so it was hard to spot). This was the problem line: background:transparent url(sf-pager.gif') repeat-x scroll bottom; Notice the missing apostrophe. IE6, IE7, and Firefox 3.5 seem to just ignore this line and continue with the rest of the combined CSS file no problem. Firefox 3.6 and Google Chrome error out on this line and refuse to include the rest of the combined CSS file. Problem solved!!! Here's

IE6 performance with CSS expressions

一个人想着一个人 提交于 2019-12-03 16:38:17
We are developing a web application that will be sold to many clients. There is already one client (a bank) which has decided that it will buy the product once it is ready. Unfortunately due to some miscommunication it came out rather late that the only browser they use is IE6. The application was already started with the thought in mind that it does not need to support anything else below IE7. The results are pretty good too - it's fully useable on IE7/FF/Opera/Safari. Haven't tested on Chrome, but expect little problems there. Unfortunately there is now the IE6 requirement after all... The

IE 6 vs. position:fixed

…衆ロ難τιáo~ 提交于 2019-12-03 13:42:28
position:fixed that doesn't work for Internet explorer 6. I can't really understand the fixes found on google. I need it to work in IE6, IE7, IE8 & FireFox 3.0. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <meta http-equiv="Content-type" content="text/html; charset=iso-8859-1" /> <title>Sidebar fixed</title> <style type="text/css"> #wrapper { position:relative; width:900px; margin:0 auto 0 auto; } #sidebar_left { position:fixed; height:200px;

Is there a JavaScript PNG fix for IE6 that allows CSS background positioning?

假如想象 提交于 2019-12-03 12:32:09
问题 I've seen a few fixes for allowing PNG images to have transparency in Internet Explorer 6, but I've yet to find one that also allows you to set the background position in CSS. If you use sprites, it's a deal-breaker. I've resorted to using GIF's (which are not as high quality), not using transparent images at all, or serving a completely different stylesheet to IE6. Is there a fix for IE6 that allows for PNG transparencies AND background positioning? 回答1: Yes. Convert your images to use

CSS <ul> <li> gap in IE7

风流意气都作罢 提交于 2019-12-03 10:29:39
问题 I have a CSS <ul> <li> nested menu that works perfectly in IE 8 and firefox but in IE7 it produces a small gap between the elements. this is my CSS: #nav, #nav ul { margin: 0; padding: 0; list-style-type: none; list-style-position: outside; position:static;/*the key for ie7*/ line-height: 1.5em; } #nav li { float: inherit; position: relative; width: 12em; } #nav ul { position: absolute; width: 12em; top: 1.5em; display: none; left: auto; } #nav a:link, #nav a:active, #nav a:visited { display:

IE6: Background-Image Load Event

泪湿孤枕 提交于 2019-12-03 09:59:52
I am displaying a bunch of thumbnail images and the latency can be very high (over a VPN) so I send all the thumbnails in a single file (like a sprite) and set the CSS background-image and background-position properties of a div to show the thumbnails. The problem I'm having is with IE6 and figuring out when the image has loaded... I'm using the BackgroundImageCache hack: document.execCommand("BackgroundImageCache",false,true); To check when the image is loaded I use this code: $('<img>').attr('src', 'ThumbSpriteTest.png').load(function() { $('.Thumbnails').css('background-image', 'url