For some strange reason my picture is not loading at runtime:
string path = Server.MapPath("./abc.jpeg");
Response.Write("the path is:");
Response.Write(path);
img_ProfilePic.ImageUrl = path;
As you see from above code, I have verified that the path is correct.
Also the image is only 20 KB and is JPEG.
My environment is VS 2008 C#
Thanks