Nov 11, 2008

Subgurim Fileuploader Control

Subgurim Fileuploader is a nice control.It automatically stores uploaded file in destination folder and in same way delete files from that folder.It stores every uploaded and deleted file in its history.So if we want to find only uploaded, we have to check the status of every history file.Here is the sample code.

for (int i = 0; i '<'fupropertyimage.history.count;i++){
if (!fuPropertyImage.historial[i].Deleted)
{
//your code
}
}

0 comments: