All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
New to Telerik UI for ASP.NET AJAX? Download free 30-day trial
Uploading file:
Elapsed time: Estimated time: Speed:
With RadAsyncUpload you can quickly allow users to upload multiple files at a time – all it takes is setting the MultipleFileSelection="Automatic” property.
Please note that this functionality is possible thanks to the HTML5 File API in modern browsers and the Silverlight/Flash plugin in older browsers.
You can select several files at once from the file selection dialog.
<%@ Page Language="VB" %> <!DOCTYPE html> <html xmlns='http://www.w3.org/1999/xhtml'> <head runat="server"> <title>Telerik ASP.NET Example</title> <link rel="stylesheet" type="text/css" href="styles.css" /> </head> <body> <form id="form1" runat="server"> <telerik:RadScriptManager runat="server" ID="RadScriptManager1" /> <telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" /> <div class="demo-container size-narrow"> <telerik:RadAsyncUpload RenderMode="Lightweight" runat="server" ID="AsyncUpload1" MultipleFileSelection="Automatic" /> <telerik:RadProgressArea RenderMode="Lightweight" runat="server" ID="RadProgressArea1" /> </div> </form> </body> </html>