IE 9 Problems

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
3/5/2012 3:19:27 PM
Gravatar
Total Posts 2239

Re: IE 9 Problems

If the X-UA-Compatible isn't set in the layout.master or on the website, the only other place I can think it would be set it is the server itself. From within IIS Manager, click the server in the Connections pane. We want the server here, not the website. From there, double-click the "HTTP Response Headers" item under the IIS section. If there is a header listed named X-UA-Compatible, that is the problem. If the site in question is the only one on the server, you can remove the X-UA-Compatible header. If there are other sites, add this to your layout.master:

<meta http-equiv="X-UA-Compatible" content="IE=edge" >

If there isn't a response header named X-UA-Compatible setup on the server, I can't help but think that your layout.master contains the meta switch. If you can't find it anywhere but your site is still coming up in compatibility mode on other machines, add the meta tag above to your header. That should force IE to use the highest mode available.

You can read more about how this stuff works here.

HTH,
Joe D.

3/5/2012 3:40:54 PM
Gravatar
Total Posts 148

Re: IE 9 Problems

Hi:

Thanks Joe.  This worked.

You must sign in to post in the forums. This thread is closed to new posts.