Enable directory browsing for ASP.Net Development Server

2.2k Views Asked by At

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?

0

There are 0 best solutions below