I am trying to use normal <img/> tag in my .aspx file. The source picture is located in the same directory as the source code. Yet, I am not able to view the image while I debug.
Here is my code:
<img alt="Search Icon" src="select.png" style="z-index: 113; left: 230px; position: absolute; top: 143px" />
Following 5 option you can try and check
1) Remove
z-indexand check2) put
~/before name in src3)
src='<%= Url.Content("select.png") %>'4) use
asp:imagecontrol instead5) add runat=”server”