C
christy
In my code behind I turn images on and off using the visible attribute. In
IE7 if I set img1.visible = false, the img tag for img1 is removed from the
code, and nothing is shown:
<td align="center">
</td>
the same code in IE8 leaves the img tag in the HML, makes scr="", and the
result is a box with a red X:
<td align="center">
<img id="pg2_V_dgClassList_sec2_row2_img1" src="" align="middle" />
</td>
with both browsers, if the img is visible, the code is the same:
<td align="center">
<img id="pg2_V_dgClassList_sec2_row1_img1"
src="/attention_red.gif" />
</td>
IE7 if I set img1.visible = false, the img tag for img1 is removed from the
code, and nothing is shown:
<td align="center">
</td>
the same code in IE8 leaves the img tag in the HML, makes scr="", and the
result is a box with a red X:
<td align="center">
<img id="pg2_V_dgClassList_sec2_row2_img1" src="" align="middle" />
</td>
with both browsers, if the img is visible, the code is the same:
<td align="center">
<img id="pg2_V_dgClassList_sec2_row1_img1"
src="/attention_red.gif" />
</td>