New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

AsyncUpload

  • Open
  • Delete
  • Rename
  • New Folder
  • Upload
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  • Upload
  •  images
    •  test & test2
  • Delete
  • Rename
  • New Folder
  • Upload
Table that lists the contents of the current directory
FilenameSize
Table that lists the contents of the current directory
  
  
  
  
  
  
  
  
  
  
Table that lists the contents of the current directory
Page 1 of 2
Page 1 of 2. Items 1 to 10 of 11
Max file size allowed:
200.00 KB
File extensions allowed:
*.jpg, *.jpeg, *.gif, *.png
  • Demo Configurator
Change Configuration-EnableAsyncUpload:

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

  • DefaultVB.aspx
  • DefaultVB.aspx.vb
<%@ Page Language="vb" AutoEventWireup="true" CodeFile="DefaultVB.aspx.vb" Inherits="Telerik.Web.Examples.FileExplorer.Default.DefaultVB" %>

<%@ 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>

Support & Learning Resources

Find Assistance