ASP.NET not delivering HTML

  • Thread starter Thread starter MattC
  • Start date Start date
M

MattC

Hi,

I have a site that occasionally will not deliver certain sections of ASP.net
code from a page.

The header and footer controls both load correctly but the images sometimes
do not appear. I can't find any reason why ASP.NET would not deliver this
almost generic html.

More oddly is it only seems to not appear in IE.

TIA

MattC

<form name="Form1" runat="server">
<uc1:header id="Header" strPageTitle="Welcome" runat="server"></uc1:header>
<div class="content-box">
<h1>welcome</h1>
<!--Row 1-->

<a runat=server target=_top href="/level1/">
<img runat=server src="/banner_ads/level1.gif" border="0">
</a>

<div style="PADDING-TOP:8px"></div>
<!--Row 2-->
<!--Column 2-->
<div style="FLOAT:right">

<a runat=server target="_top" href="/level2/">
<img runat=server src="/banner_ads/level2.gif" border="0">
</a>

</div>
<!-- Column 1-->

<a runat=server target="_top" href="/level3/">
<img runat=server src="/banner_ads/level3.gif" border="0">
</a>

<div style="PADDING-TOP:8px"></div>
<!--Row 3-->
<!--Column 2-->
<div style="FLOAT:right">

<a runat=server target="_top" href="/level4/">
<img runat=server src="/banner_ads/level4.gif" border="0">
</a>

</div>
<!--Column 1-->

<a runat=server target="_top" href="/level5/">
<img runat=server src="/banner_ads/level5.gif" border="0">
</a>

</div>
<uc1:rhs id="Rhs1" runat="server"></uc1:rhs>
</form>
<uc1:footer id="Footer" runat="server"></uc1:footer>
 
What version of IE are you runnning?

Try to preload images. Insert the following code into your HEAD tag. Be sure
to use the correct name and path for your image!

<SCRIPT LANGUAGE = "JAVASCRIPT">
if (document.images)
{
img1 = new Image();
img1.src = "imageName1.gif";
}
</SCRIPT>
 
This occurs on IE6. It's not so much a case of images not loading, there is
no placeholder or red X to signifiy it hasn't loaded. Simply the html that
IE would render and then request the images and disaply teh links is not
being delivered to the browser? Is there any way it could be the div tags??

TIA

MattC
 
post us a result html, will see it

MattC said:
This occurs on IE6. It's not so much a case of images not loading, there
is
no placeholder or red X to signifiy it hasn't loaded. Simply the html
that
IE would render and then request the images and disaply teh links is not
being delivered to the browser? Is there any way it could be the div
tags??

TIA

MattC
 
Back
Top