Hi,
I have created a basic asp.net application with below code:
<telerik:RadAsyncUpload runat="server" ID="AsyncUpload1" ChunkSize="1048576" />
When I run the application, files are getting uploaded to the app_data folder for IE\Chrome.
However, for safari the uploaded file is not having the valid file extension and sometimes it's not uploading the files.
There is no code added in cs file and the config file contains below configuration:
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2199023255"/>
<fileExtensions allowUnlisted="true"/>
</requestFiltering>
</security>
<handlers>
<add path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI" name="Telerik.Web.UI.WebResource"/>
</handlers>
<directoryBrowse enabled="true"/>
</system.webServer>
Any pointers will be appreciated.
Thanks.