Friday, October 18, 2013

[Solved]How to delete an uploaded image in asp.net ?

Uploaded image you can easily delete by server side code.

try {
FileInfo TheFile = new FileInfo(MapPath(".") + "\\" + FileName);
if (TheFile.Exists) {
File.Delete(MapPath(".") + "\\" + FileName);
}
else {
throw new FileNotFoundException();
} 
} 

Good Day!!!

No comments:

Post a Comment