Tinymce-4错误:在ASP.NET项目中插入Excel(.xlsx)文件时,“文件扩展名不允许”

我在我的asp.net应用程序中使用tinymce-4插件。 我已经configuration了web.config文件,允许上传“.xlsx”文件,如下所示:

<setting name="AllowedFileExtensions" serializeAs="String"> <value>'doc', 'docx', 'pdf', 'xls', 'xlsx', 'txt', 'csv','html','psd','sql','log','fla','xml','ade','adp','ppt','pptx'</value> </setting> 

但是,我得到一个错误插入xlsx文件时不允许文件扩展名

我在我的web.config文件中缺less的东西?

另外,对于插件的初始化,我使用下面的代码:

  tfm_path = '/common/filemanager'; tinymce.init({ selector: 'textarea.html-editor', plugins: 'advlist anchor autolink charmap code contextmenu directionality fullpage fullscreen image insertdatetime link lists media pagebreak paste print searchreplace spellchecker table webizafilemanager wordcount', toolbar: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image", language: 'tr_TR' });