Hi I tried a code to display a saved image from a folder to an asp:image control using image url. I used the following code
<asp:Image ID="Image1" runat="server" Height="71px" Width="141px" />
and code in the cs page as
string theFileName = Path.Combine(Server.MapPath("~/images/Signature"), Filename);
Image1.ImageUrl = theFileName;
Image1.DataBind();
I can access the same image file from the address bar though the url for the image is correct. then what is the problem with this code? when I inspect the webpage then it shows could not load the image. I am here attaching the scree shot for the same

Server.MapPath.