VirtualPathProvider不会看到请求,因为没有在asp.net开发服务器上设置* filetype处理程序

时间:2011-04-05 17:42:11

标签: c# .net asp.net asp.net-mvc-3 virtualpathprovider

我正在使用VirtualPathProvider从.dll(插件)提供一些资源。在IIS中,可以将ASP.NET ISAPI筛选器的文件类型筛选器更改为“*”。如何为Visual Studio附带的ASP.NET开发服务器执行相同的操作?

提前干杯!

1 个答案:

答案 0 :(得分:1)

ASP.NET部署服务器可以处理所有请求(类似于IIS6上的ISAPI配置),如果将其添加到web.config中:

  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true" />
  </system.webServer>