Telerik is a leading vendor of ASP.NET AJAX, ASP.NET MVC, Silverlight, WinForms and WPF controls and components, as well as .NET Reporting, .NET ORM , .NET CMS, Code Analysis, Mocking, Team Productivity and Automated Testing Tools. Building on its expertise in interface development and Microsoft technologies, Telerik helps customers build applications with unparalleled richness, responsiveness and interactivity. Telerik products help thousands of companies to be more productive and deliver reliable applications under budget and on time.
Version Q2 2011 released 07/12/2011
select

AsyncUpload / Additional Fields

No uploaded files


  • Click on the "Select" button in order to show the file dialog and select file for upload. Once the file is uploaded to the temporary directory an input will appear just below the name of the uploaded file. There you could add the necessary file information.

Source Code

C# VB.NET
Show code in new window Demo isolation steps
  • <%@ Page Language="c#" CodeFile="DefaultCS.aspx.cs" AutoEventWireup="true" Inherits="Telerik.Web.Examples.Upload.AdditionalFields.DefaultCS" %>

    <%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
    <%@ Register TagPrefix="qsf" Namespace="Telerik.QuickStart" %>
    <%@ Register TagPrefix="qsf" TagName="Header" Src="~/Common/Header.ascx" %>
    <%@ Register TagPrefix="qsf" TagName="HeadTag" Src="~/Common/HeadTag.ascx" %>
    <%@ Register TagPrefix="qsf" TagName="Footer" Src="~/Common/Footer.ascx" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/tr/xhtml11/dtd/xhtml11.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <qsf:headtag runat="server" />
        <link rel="stylesheet" type="text/css" href="ExampleFiles/Styles.css" />
    </head>
    <body class="BODY">
        <form runat="server" id="mainForm" method="post">
        <telerik:radscriptmanager id="ScriptManager1" runat="server" />
        <qsf:header runat="server" id="Header1" navigationlanguage="C#" />
        <table class="AdditionalFields">
            <tr>
                <td class="TopCell" colspan="2">
                </td>
            </tr>
            <tr>
                <td class="BodyCell">
                    <div class="FileDetails">
                        <telerik:RadAsyncUpload runat="server" id="RadAsyncUpload1" OnClientFileUploaded="onClientFileUploaded"></telerik:RadAsyncUpload>
                    </div>
                </td>
                <td class="BodyCell RightCell">
                    <div class="uploadedfiles">
                        <div>
                            <asp:Label ID="labelNoResults" runat="server" Visible="True">No uploaded files</asp:Label>
                            <asp:Repeater runat="server" ID="Repeater1">
                                <ItemTemplate>
                                    <span style="font-weight: normal; font-size: 10px; color: black; position:relative">
                                        File info:&nbsp;<%#((Telerik.Web.UI.UploadedFile)Container.DataItem).GetFieldValue("TextBox").ToString()%>,<br />
                                        File name:&nbsp;<%# DataBinder.Eval(Container.DataItem, "FileName").ToString() %>,<br />
                                        File size:&nbsp;<%# DataBinder.Eval(Container.DataItem, "ContentLength").ToString() %><br />
                                        <br />
                                        <br />
                                    </span>
                                </ItemTemplate>
                            </asp:Repeater>
                        </div>
                    </div>
                </td>
            </tr>
            <tr>
                <td class="BottomCell" colspan="2">
    <asp:Button ID="buttonSubmit" runat="server" CssClass="RadUploadButton" OnClick="buttonSubmit_Click"
    Text="Submit" />

                </td>
            </tr>
        </table>
        <br />
         <script type="text/javascript">
         //<![CDATA[
            var $ = $telerik.$;

            function onClientFileUploaded(radAsyncUpload, args) {
                var $row = $(args.get_row());
                var inputName = radAsyncUpload.getID("TextBox");
                var inputType = "text";
                var inputID = inputName;
                var input = createInput(inputType, inputID, inputName);
                var label = createLabel(inputID);
                $row.append("<br/>");
                $row.append(label);
                $row.append(input);
            }

            function createInput(inputType, inputID, inputName) {
                var input = '<input type="'+ inputType + '" id="' +inputID+ '" name="' + inputName + '" />';
                return input;
            }

            function createLabel(forArrt) {
                var label = '<label for=' + forArrt + '>File info: </label>';
                return label;
               }
        //]]>
        </script>
        <qsf:footer runat="server" id="Footer1" />
        </form>
    </body>
    </html>

Get more than expected!

 
 

Take your time to truly experience the power of RadControls for ASP.NET AJAX with a free 60-day trial backed up by Telerik’s unlimited dedicated support.

Download your RadControls for ASP.NET AJAX trial and jumpstart your development with the available Getting Started resources.

If you have any questions, do not hesitate to contact us at sales@telerik.com.

Copyright 2002-2024 © Telerik. All right reserved
Telerik Inc, 201 Jones Rd, Waltham, MA 02451