Handling Uploadify situation when file exisits

Have a very annoying issue not being able to notify users when they have tried to upload a file which already exists. When its found that the file exists it does as I wish and does not overwrite however I cant work out how to let the user know somehow. I have a classic ASP version of the code running. The upload dialog/progress bar appears then quickly goes away because I have these settings n place:\[code\]'multi' : false,'auto' : true,\[/code\]I am hoping to do something like this:\[code\]onDuplicaetDetected: function () { alert('upload failed because the file is a duplicate')\[/code\]which would give me a JS error prompt. Or even:\[code\]'duplicateFound' : function() {self.location='duplicateDetected.asp?reload=t';}\[/code\]
 
Top