I deployed an ASP.NET 4.0 web site to my development(beta) server(W2K8-64bit running Framework 4, IIS7.5) on company intranet and one of the pages no longer displays correctly when viewed from my local machine(IE8, .NET 4, win 7 PRo, 64-bit). he page that contains a CSS-table created with a datarepeater
div class="BeginningOfARow">
<div style="display:inline-block;>cell1</div>
<div style="display:inline-block;>cell2</div>
<div style="display:inline-block;>cell3</div>
</div> <!-- End of row -->
Te page falls apart;The inline blocks are treated as display:blocks.
Here's the weird part:
Page displays correctly running within Visual Studio 2010 on my local machine which uses default IE8 as supporting browser. The page also displays as expected from all client browsers outside of the corporate office. These clients all share the same exact configuration: Windows 7 PRofessional, 64-bit with .NET 4 client profile, IE8. On the surface, it appears to be a firewall problem, however, this same page displays correctly using the latest version of firefox. (I can get more specific about browsers when i get to work tomorrow).
Any suggestions on how to troubleshoot this issue?The page contains an absolutely positioned header, abs. pos. left nav bar and abs. pos. content block. The content block contains repeater with a css-table.
div class="BeginningOfARow">
<div style="display:inline-block;>cell1</div>
<div style="display:inline-block;>cell2</div>
<div style="display:inline-block;>cell3</div>
</div> <!-- End of row -->
Te page falls apart;The inline blocks are treated as display:blocks.
Here's the weird part:
Page displays correctly running within Visual Studio 2010 on my local machine which uses default IE8 as supporting browser. The page also displays as expected from all client browsers outside of the corporate office. These clients all share the same exact configuration: Windows 7 PRofessional, 64-bit with .NET 4 client profile, IE8. On the surface, it appears to be a firewall problem, however, this same page displays correctly using the latest version of firefox. (I can get more specific about browsers when i get to work tomorrow).
Any suggestions on how to troubleshoot this issue?The page contains an absolutely positioned header, abs. pos. left nav bar and abs. pos. content block. The content block contains repeater with a css-table.