Comment télécharger plusieurs fichiers à l'aide de ASP.Net et Jquery...?

J'ai ajouté ce qui suit javascript dans ma page aspx...

<script src="jquery-1.3.2.js" type="text/javascript"></script>
<script src="jquery.MultiFile.js" type="text/javascript"></script>

J'ai également ajouté le code suivant dans le bouton cliquez sur le fonctionnement.

 HttpFileCollection hfc = Request.Files;
    for (int i = 0; i < hfc.Count; i++)
    {
        HttpPostedFile hpf = hfc[i];
        if (hpf.ContentLength > 0)
        {
            hpf.SaveAs(Server.MapPath("MyFiles") + "\\" + System.IO.Path.GetFileName(hpf.FileName));
            Response.Write("<b>File: </b>" + hpf.FileName + " <b>Size:</b> " + hpf.ContentLength + " <b>Type:</b> " + hpf.ContentType + " Uploaded Successfully <br/>");
        }
    }

Le problème est que je ne peux pas sélectionner mulltiple fichiers...!!!

 <asp:FileUpload id="FileUploadControl" class="multi" runat="server"/>
        <asp:Button ID="BtnUpload" runat="server" onclick="BtnUpload_Click" 
            Text="Upload" Width="105px" style="margin-top: 4px" />
        <asp:Label runat="server" id="StatusLabel" text="Upload status: " />

http://www.c-sharpcorner.com/UploadFile/prathore/multiple-file-upload-using-jquery-in-Asp-Net-3-5/