Reputation: 41
I want to use AjaxFileUpload to upload dmp file asynchronously in a asp.net website. Other files are uploaded successfully but when i try to upload a dmp file it shows error in red. No issue with the size and max no of files. Please help.
Upvotes: 2
Views: 74
Reputation: 720
This is because ".dmp" file extension is not whitelisted.
Add additionalUploadFileExtensions
attribute to the Web.config:
<ajaxControlToolkit additionalUploadFileExtensions="dmp" />
More info can be found in project's wiki.
Upvotes: 1