When i trace input files in client side after chose files, there are files in this input ($('#inputid')[0].files). And then, after click events in server side, missing request files. PS: I create input elements dynamic. Let me know why missing files.
HttpFileCollection hfc = HttpContext.Current.Request.Files;
for (int i = 0; i < hfc.Count; i++)
{
HttpPostedFile hpf = hfc[i];
} code here
Aucun commentaire:
Enregistrer un commentaire