Upload Box in Tab Item

Hello,

im trying to use an UploadBoc inside a TabItem, but I'm always getting the Message, that the message=POST and enctype=multipart/form-data are missing and that therefore the File cannot be sent.

The Code is the following:
                                   <ContentSection>
                                        <div class="control">
                                            <ej:RTE runat="server" ID="rteBeitragDateien" AllowEditing="true" ShowToolBar="true"></ej:RTE>
                                        </div>
                                        <ej:Button runat="server" ID="btnSaveComment" OnClick="btnSaveComment_Click" Text="Speichern"></ej:Button>
                                        <asp:Literal runat="server" ID="litComment"></asp:Literal>
                                        <div>
                                            <ej:UploadBox runat="server" ID="ubCommentFile" AutoUpload="false" MultipleFilesSelection="true" ExtensionsAllow=".pdf"
                                                SaveUrl="saveFiles.ashx" OnComplete="ubCommentFile_Complete"></ej:UploadBox>
                                        </div>
                                    </ContentSection>
Am I missing something or is there anything completely wrong?

Best regards and thanks in advance.

3 Replies

KR Keerthana Rajendran Syncfusion Team May 16, 2018 08:41 AM UTC

Hi Benedikt,    
    
Thank you for contacting Syncfusion Support.    
    
We suspect that this issue occurs because saveFiles.ashx handler is not found in your project. We suggest you to add a handler file as shown below to upload files to the required path.    
    
saveFiles.ashx:    
    
public class saveFiles : IHttpHandler    
    {    
    
        public void ProcessRequest(HttpContext context)    
        {    
            string targetFolder = HttpContext.Current.Server.MapPath("uploadfiles");    
            if (!Directory.Exists(targetFolder))    
            {    
                Directory.CreateDirectory(targetFolder);    
            }    
            HttpRequest request = context.Request;    
            HttpFileCollection uploadedFiles = context.Request.Files;    
           if (uploadedFiles != null && uploadedFiles.Count > 0)    
            {    
                for (int i = 0; i < uploadedFiles.Count; i++)    
                {    
                    string fileName = uploadedFiles[i].FileName;    
                    int indx = fileName.LastIndexOf("\\");    
                    if (indx > -1)    
                    {    
                        fileName = fileName.Substring(indx + 1);    
                    }    
                    uploadedFiles[i].SaveAs(targetFolder + "\\" + fileName);  //save file in destination    
                }    
            }    
            else    
            {    
    
            }    
        }    
    
   }    
    
    
<ej:Tab ID="DefaulttabContent" runat="server" Width="600px" ShowCloseButton="true"HeaderPosition="Top" EnablePersistence="false" EnableTabScroll="false" EnableRTL="false">    
        <Items>    
            <ej:TabItem Id="steelman" Text="Man of Steel">    
                <ContentSection>    
                   <div class="control">    
                    <ej:RTE runat="server" ID="rteBeitragDateien" AllowEditing="true"ShowToolBar="true"></ej:RTE>    
                   </div>    
                   <ej:Button runat="server" ID="btnSaveComment"  Text="Speichern"></ej:Button>    
                   <asp:Literal runat="server" ID="litComment"></asp:Literal>     
                   <div>    
                   <ej:UploadBox runat="server" ID="ubCommentFile" AutoUpload="false"MultipleFilesSelection="true" ExtensionsAllow=".pdf" SaveUrl="saveFiles.ashx"></ej:UploadBox>    
                     </div>    
                </ContentSection>    
                      
            </ej:TabItem>    
              
        </Items>    
    </ej:Tab>    
    
We have attached a sample for your reference which can be downloaded from the below link.    
    
    
If the issue persists, kindly modify the above sample to reproduce the issue along with the product version so that we can proceed further.    
    
Regards,    
Keerthana.    
 



BS Benedikt Seitz May 18, 2018 09:26 AM UTC

Hi Keerthana,

thanks for your support. The SaveFile.ashx was there but the reference was wrong.

Regards,
Ben


IB Ilakkiya Baskar Syncfusion Team May 21, 2018 11:40 AM UTC

Hi Benedikt, 

Most welcome. We consider that your requirement is fulfilled. If not, please let us know the details of the error. 
And then only, we can proceed further. 

Regards, 
Ilakkiya B 


Loader.
Up arrow icon