Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
So, in the FormView's "DataBinding" event, use the File.Exists method to check whether the image exists.On the binding event of whatever control that image is placed in, use File.Exists to check if there is an existing image
If the method you used above states a file does exist, then don't do anything. If it states the file doesn't exist, checge the path of your Image control to point at an image that says "no image available" (or add a New Literal/Label control if you don't want to use an image).If there isn't either set the path to show a "no image found" image or add a Literal/Label control and set it's Text property.