Hello Mauro,
RadUpload does not fire an event for each uploaded file. It uploads all the files at once on the postback to the server so you have to wait for the upload to finish.
The first link I gave you points to a help article that shows how to iterate through all uploaded files:
protected void Button1_Click(object sender, System.EventArgs e) |
{ |
foreach (UploadedFile f in RadUpload1.UploadedFiles) |
{ |
// do your custom job here |
|
f.SaveAs( "c:\\uploaded files\\" + f.GetName(), true); |
} |
} |
Sincerely yours,
Veskoni
the Telerik team
Check out
Telerik Trainer, the state of the art learning tool for Telerik products.