vote up 0 vote down star

This is so odd to me.. I have IIS 5 running on XP and it's hosting a small ASP.Net app for our LAN that we can access by using the computer name, virtual directory, and page name (http://matt/smallapp/customers.aspx), but you can also hit that IIS server and page from the internet because I have a public IP that my firewall routes to the "Matt" computer (like http://213.202.3.88/smallapp/customers.aspx [just a made-up IP]). Don't worry, I have Windows domain authentication is in place to protect the app from anonymous users.

So all the abovea parts works fine. But what's weird is that the Border of the divs on the page are rendered much thicker when you access the page from the intranet, versus the internet, (I'm using IE8) and also, some of the div layout (stretching and such) acts differently. Why would it render different in the same browser based on whether it was reached from the LAN vs. the internet? It does NOT do this in FireFox. So it must be just an IE8 thing.

All the CSS for the divs is right in the HTML page, so I do not think it is a caching matter of a CSS file.

Notice how the borders are different in these two images:

Internet: http://twitpic.com/hxx91 .

Lan: http://twitpic.com/hxxtv

flag

59% accept rate
Can you post your code? – Bhaskar Sep 16 at 16:20
No need now, since baretta hit the nail right on the head. Thanks for reading, though. – MattSlay Sep 16 at 18:34

1 Answer

vote up 1 vote down check

It's most definitely because websites located on internal networks is rendered in quirks mode by default by IE8, while pages located on the Internet will determine rendering mode based on doctype. This means that while you are browsing your page over the Internet, the doctype declaration of that document dictates the rendering mode, while if you are browsing on the Intranet, IE8 uses the IE7 rendering engine.

Rendering mode can be explicitly overridden, by the user changing the IE compatibility settings, or, by always forcing IE8 to use the IE8 rendering engine, adding a meta tag to the page:

<meta http-equiv="X-UA-Compatible" content="IE=8" />
link|flag
Wow! Perfect! You are one very smart rascal. When I posted this question, I said to myself, "No one will take the time read all these details, much less know the answer, and they will probably just write me off as a crazy who doesn't know what he's doing." Thanks very much. – MattSlay Sep 16 at 18:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.