Upload Box inside the repeater does not call SaveUrl

Hi,

I'm creating a form where I need to generate the fields for document uplaod dynamically, the code below does not seem to have any effect, could you please help me.

I tried to go through the Repeater's DataBound, but without success.



I also tried for Create, but without success






Thanks.

3 Replies 1 reply marked as answer

KR Keerthana Rajendran Syncfusion Team March 29, 2021 04:56 AM UTC

Hi Euler , 
 
Thanks for contacting Syncfusion support. 
 
We checked your code and it seems you are assigning saveUrl for Uploadbox from code behind. We have prepared a sample similar to your scenario by mapping the save handler for SaveUrl property through code behind.  
 
Refer to the following code.  
 
protected void Page_Load(object sender, EventArgs e) 
        { 
            Upload1.SaveUrl = "saveFiles.ashx"; 
            Upload1.RemoveUrl = "removeFiles.ashx"; 
        } 
 
 
The Upload action works fine in our end with the above sample.  
 
Additional parameters can be passed to Uploadbox handler through its begin event. Refer to the following KB links for more details on this. 
 
 
 
Refer to the following links for more details on ejUploadbox 
 
 
 
 
If we have misunderstood, please share us some clear details on your requirement along with your complete code snippet to assist you promptly. 
 
Regards, 
Keerthana.  


Marked as answer

EV Euler Vital March 31, 2021 08:34 PM UTC

Hi Keerthana,

Thank you very much for your help, managing to solve the problem you had.

Regards,
Euler


KR Keerthana Rajendran Syncfusion Team April 1, 2021 05:26 AM UTC

Hi Euler, 
  
Most welcome. We are glad to know that the issue has been resolved. Please get back to us if you need further assistance.  
 
Regards, 
Keerthana.  


Loader.
Up arrow icon