ho provato così:
path = "http://nomesito.it/immagine.jpg"
Dim fs
fs = Server.CreateObject("Scripting.FileSystemObject")
If fs.FileExists(path) Then
Response.Write("il file esiste")
Else
Response.Write("Il file non esiste")
End If
fs = Nothing
ma l'istruzione if da sempre falso anche se il file esiste... sbaglio qualcosa??