Here exist a file name a.jpg
Project\WS\card \a.jpg
Project\WS\BM\showPic.aspx
in show Pic.aspx
private void Page_Load(object sender, System.EventArgs e)
{
string path = "../card/a.jpg";
if(IsExist(path))
{//show picture
this.imgOBldCard.ImageUrl = path;
this.imgOBldCard.Visible =true;
}
else
{ ...
Go to the complete details ...