if I doThis actually doesn't work for me. I'm using VS 2010 premium edition.
<asp:Image ID="Image1" runat="server" Height="984px" Width="929px" ImageUrl = "D:/Images/Info/160597aa.gif"/>
then the image is displayed!!
I have hundreds of thousands of images distributed in many different drives and foldersyou need better organize the folder path of your images.
you need to use a Server Side path instead of Local path. not every user's machine has D:/Images/Info/160597aa.gi
the file in the local directory need to be mapped and accessible from web server end.
the outcome could be something using relative path like:
Open in new window