This is a migrated thread and some comments may be shown as answers.

Telerik RadAsyncUpload after validation file missing

3 Answers 121 Views
AsyncUpload
This is a migrated thread and some comments may be shown as answers.
Cheah
Top achievements
Rank 1
Veteran
Cheah asked on 24 May 2020, 06:30 AM

May I ask about How to keep the file after validation for Telerik RadAsync Upload?

<telerik:RadScriptManager runat="server" ID="RadScriptManager"></telerik:RadScriptManager>        
<telerik:RadAsyncUpload RenderMode="Lightweight" runat="server" ID="RadAsyncUpload1"></telerik:RadAsyncUpload>

I had put the Ajax settings, but its not work.

<telerik:RadAjaxManager runat="server" ID="RadAjaxManager1">
 
            <AjaxSettings>
                <telerik:AjaxSetting AjaxControlID="RadAsyncUpload1">
                    <UpdatedControls>
                        <telerik:AjaxUpdatedControl ControlID="RadAsyncUpload1" />
                    </UpdatedControls>
                </telerik:AjaxSetting>
 
            </AjaxSettings>
        </telerik:RadAjaxManager>

And I used Asp.net C# Web-Form 

 

3 Answers, 1 is accepted

Sort by
0
Zubair
Top achievements
Rank 1
Veteran
answered on 27 Aug 2020, 08:30 AM

no one answered :( 

still looking for this problem

 

0
bryan
Top achievements
Rank 1
answered on 02 Oct 2020, 09:55 PM

create a directory within your website where the files should be placed when validation is completed.  This is the TARGET folder.   Files will be placed here AFTER the File_Uploaded even has executed.  

 

In the markup for the Upload control add attribute for TargetFolder.   In my example I created my target folder under App_Data

TargetFolder="App_Data/CompletedUploads"

 

0
bryan
Top achievements
Rank 1
answered on 02 Oct 2020, 09:58 PM

sorry that target folder should have been declared in market as :

 

TargetFolder="~/App_Data/CompletedUploads"

Tags
AsyncUpload
Asked by
Cheah
Top achievements
Rank 1
Veteran
Answers by
Zubair
Top achievements
Rank 1
Veteran
bryan
Top achievements
Rank 1
Share this question
or