Author: isjf | Posted on: 9/26/2008 12:16:05 AM | Views : 927

 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 ...