开发者

how to change our asp.net application code for browser ie6 to ie8

开发者 https://www.devze.com 2023-01-17 04:56 出处:网络
we developed one asp开发者_开发知识库.net application , that is compatible for ie6 . now our client want to compatible of that applicationto ie8. so what i need to change in our application so that it

we developed one asp开发者_开发知识库.net application , that is compatible for ie6 . now our client want to compatible of that application to ie8. so what i need to change in our application so that it can be compatible for ie8.

please let me know if any body know solution for this


Actually, IE6 is the one that has compatibility problems. IE8 complies to a large part of current web standards, and those are well documented. If you don't need to support IE6 anymore, just look up the standards and code against them.

Other than that, there is hardly any other way than test against the real thing. The recommended way of doing so (since you can't have multiple versions of IE on the same OS install) is to install one virtual machine per version. Microsoft offers free OS images (with time-limited activation) for this particular purpose.

If you need to support both IE6 and IE8, your best bet are conditional comments: see http://msdn.microsoft.com/en-us/library/ms537512%28VS.85%29.aspx for documentation. They allow you to show content for selected versions of IE only, and hide it for the rest (including non-IE browsers).

IE8 also adds a few security measures that could bite you, so be sure to test thoroughly.

0

精彩评论

暂无评论...
验证码 换一张
取 消