Chapter 7 Try It Out - Behavior of the Virtual Path Property
Hello:
On page 242 "Try It Out" Investigating the Behavior of the Virtual Path Property #4. When I render the page the first and third image appears but the second one doesn't. I get a red "X" in it's place and don't know why. Can someone offer some advice why this may be happening.
<div>
<asp:Image ID="Image1" runat="server" ImageUrl="Header.jpg" /><br />
</div>
<div>
<asp:Image ID="Image2" runat="server" ImageUrl="/Header.jpg" /><br />
</div>
<div>
<asp:Image ID="Image3" runat="server" ImageUrl="~/Header.jpg" /><br />
</div>
|