i'm using ajaxfileupload in my asp.net project i to get list of uploaded files and save them in database but i don't know how i can get which files are uploading when i press on upload button
protected void AjaxFileUpload1_UploadComplete1(object sender, AjaxControlToolkit.AjaxFileUploadEventArgs e)
{
string filePath = MapPath("~/images/") + System.IO.Path.GetFileName(e.FileName);
AjaxFileUpload1.SaveAs(filePath);
}