Hi,
The uploader would added .resx to prevent the file be downloaded or executed by implicit permissions.
When you use the Uploader , you need use the properties/methods of the UploaderEventArgs (FileName/CopyTo etc..) to process the uploaded data. for example:
void Uploader_FileUploaded(object sender, UploaderEventArgs args)
{
string folder = Server.MapPath("~/MyFiles");
string savepath = System.IO.Path.Combine(folder, args.FileName);
args.MoveTo(savepath);
}
Regards,
Terry