Posted on: 4/12/2015 1:52:08 PM | Views : 619

I have the following directory structure:
Folder       Images       graphic.png Page.aspx
The following image control in Page.aspx: <asp:Image ID="Image1" runat="server" AlternateText="Logo" ImageUrl="~/Folder/Images/graphic.png" />
This worked fine. Then I added another page under Folder and the graphic would not display. Fixed by moving the graphic from Images to Folder and changing the control to: <asp:Image ID="Image1" runat="server" AlternateText="Logo" ImageUrl="~/Folder/grahic.png" />
Any thoughts?

Go to the complete details ...