Allowing DLL download in IIS7
We are using IIS7, curre开发者_StackOverflowntly in classic mode. We have an ActiveX control on our site that needs a DLL to get downloaded to Client. To allow this to happen, we are removing the Execute permission for the DLLs and EXEs (in Handler Mappings).
The problem is that this method prevents any DLL or EXE from being used by the web application. Is there any way to configuring IIS such that a specific DLL can get downloaded, without a blanket removal of Execute permission?
Make another application, in which the handler mapping execute permissions are removed. Store the content in this application and redirect the users to this application.
精彩评论