When I set image URL property to asp image control that is in App_Data folder, image is showing in page design view but not in browser.
<form id="form1" runat="server">
<div>
<asp:Image ID="Image1" runat="server" ImageUrl="~/App_Data/p3.jpg" />
</div>
</form>
It seems to be looking straight forward, but not showing image.
Thanks