I have a directory set up that people can put images of themselves in. My program checks to see if they have put a default photo in, and if they have not it displays a generic image. No matter what I put into the IO.Fle.Exists Line It always returns false. I have made the folder in question a Public Shared folder with everyone having read access, and the ASP Account has full access to it.

VB Code:
  1. If IO.File.Exists("\\server\Photos\Emp\" & oDis.Manager.ExchangeName & "\" & "default.jpg") Then
  2.       imgPic.ImageUrl = "http://server/Photos/Emp/" & oDis.Manager.ExchangeName & "/default.jpg"
  3.     Else
  4.       imgPic.ImageUrl = "http://server/Photos/Emp/NA/default.jpg"
  5.     End If