谢谢帮忙!
fso
fso.fileexists(path/filename)
Set fso1 = Server.CreateObject("Scripting.FileSystemObject")
if fso1.FileExists(Server.MapPath("/image/a.jpg")) then
Response.Write "存在"
else
Response.Write "不存在"
End If