我想限制.exe,.dll,.js文件的上传。 有没有一种方法可以像下面一样修改以下内容,例如允许。但限制.exe,dll,js。 我不想包含一个可以上传的文件类型,而是想要限制某些文件的上传。
Example this line allows only jpg and gif from being uploaded,
i dont want to specify all the types i want rather
somethink like allow *.* and restrict .exe, js, dll. I am using StoreFile() for upload.
RadFileExplorer1.Configuration.SearchPatterns = new string[] { "*.jpg" , "*.gif"};