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
The Configuration-EnableAsyncUpload property gets or sets a boolean value indicating whether to use RadAsyncUpload or RadUpload in the upload window of RadFileExplorer. In the following online help article you can find information on the differences between the two controls: RadAsyncUpload vs RadUpload
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="DefaultCS.aspx.cs" Inherits="Telerik.Web.Examples.FileExplorer.Default.DefaultCS" %> <%@ Register TagPrefix="qsf" Namespace="Telerik.QuickStart" %> <%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %> <!DOCTYPE html> <html xmlns='http://www.w3.org/1999/xhtml'> <head runat="server"> <title>Telerik ASP.NET Example</title> </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-medium"> <telerik:RadFileExplorer RenderMode="Lightweight" runat="server" ID="FileExplorer1" Width="595px" Height="350px" AllowPaging="true" PageSize="10"> <Configuration EnableAsyncUpload="true" ViewPaths="~/FileExplorer/Examples/Overview/images" UploadPaths="~/FileExplorer/Examples/Overview/images" DeletePaths="~/FileExplorer/Examples/Overview/images"></Configuration> </telerik:RadFileExplorer> </div> <qsf:ConfiguratorPanel ID="Configuratorpanel1" runat="server"> <Views> <qsf:View> <asp:Label ID="Label1" runat="server">Change <strong>Configuration-EnableAsyncUpload</strong>:</asp:Label> <asp:RadioButtonList ID="RadioButtonListEnableAsyncUpload" runat="server" AutoPostBack="True" OnSelectedIndexChanged="RadioButtonListEnableAsyncUpload_SelectedIndexChanged"> <asp:ListItem Value="true" Selected="True">true</asp:ListItem> <asp:ListItem Value="false">false</asp:ListItem> </asp:RadioButtonList> </qsf:View> </Views> </qsf:ConfiguratorPanel> </form> </body> </html>