Compatibility View in IE8
-
i want to open my website automatically in Compatibility mode in IE8 in ASP.NET(C#). :doh:
-
i want to open my website automatically in Compatibility mode in IE8 in ASP.NET(C#). :doh:
You mean your system is running with IE8, but you want to open your web application with Compatibility Mode of Browser ?
Abhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you.
-
You mean your system is running with IE8, but you want to open your web application with Compatibility Mode of Browser ?
Abhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you.
actaully i made a project in ASP.Net its working fine in IE6 but not working well in IE8, it works well in IE8 only when i click the Compatibility mode.. so i want is my project work well in IE8 without clicking on "Compatibility Mode"
-
i want to open my website automatically in Compatibility mode in IE8 in ASP.NET(C#). :doh:
This is how it can be done: http://www.ditii.com/2008/08/28/ie8-standards-mode-and-ie7-compatibility-mode/[^]
-
actaully i made a project in ASP.Net its working fine in IE6 but not working well in IE8, it works well in IE8 only when i click the Compatibility mode.. so i want is my project work well in IE8 without clicking on "Compatibility Mode"
Ohh...Then you need to concentrate on CSS only. and Why IE6.... Its too backdated.. I think..
Abhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you.
-
i want to open my website automatically in Compatibility mode in IE8 in ASP.NET(C#). :doh:
Add this tag before head tag in the page html. HTH
Coding C# ExciteTemplate
-
i want to open my website automatically in Compatibility mode in IE8 in ASP.NET(C#). :doh:
These are all Meta headers which you might also use based on your requirement : <meta http-equiv="X-UA-Compatible" content="IE=4"> <!-- IE5 mode --> <meta http-equiv="X-UA-Compatible" content="IE=7.5" > <!-- IE7 mode --> <meta http-equiv="X-UA-Compatible" content="IE=100" > <!-- IE8 mode --> <meta http-equiv="X-UA-Compatible" content="IE=a" > <!-- IE5 mode --> Check this : http://blogs.msdn.com/deviations/archive/2009/05/07/how-to-enable-ie-8-compatibility-view-for-your-whole-web-site-or-for-specific-web-site-directories.aspx
Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using Javascript -
These are all Meta headers which you might also use based on your requirement : <meta http-equiv="X-UA-Compatible" content="IE=4"> <!-- IE5 mode --> <meta http-equiv="X-UA-Compatible" content="IE=7.5" > <!-- IE7 mode --> <meta http-equiv="X-UA-Compatible" content="IE=100" > <!-- IE8 mode --> <meta http-equiv="X-UA-Compatible" content="IE=a" > <!-- IE5 mode --> Check this : http://blogs.msdn.com/deviations/archive/2009/05/07/how-to-enable-ie-8-compatibility-view-for-your-whole-web-site-or-for-specific-web-site-directories.aspx
Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using JavascriptThanx for reply..... :)
-
Thanx for reply..... :)
If i set the compatibility mode to IE7, then what will happen when i access through IE6? Kindly reply.