I want a directory listing/browsing available in my Asp.Net MVC application. So I modified web.config:
<system.webServer>
<directoryBrowse enabled="true" />
</system.webServer>
and it works well under IIS or IIS Express.
But on VS Development Server it gives HTTP 404 The resource cannot be found.
Is there anything to make it work?