Sumedh Pawar
Sumedh Pawar

Reputation: 41

AjaxFileUpload control don't upload .dmp files

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

Answers (1)

MikhailTymchukDX
MikhailTymchukDX

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

Related Questions