Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
「Project/」をプロジェクトのメイン フォルダーとします。たとえば、'Project/a' フォルダーがあり、そこに Default.aspx ファイルが含まれていない場合、そのフォルダー内のファイルを非表示にするにはどうすればよいですか?
たとえば、上記のようなフォルダーがある場合、ASP.NET はその中のすべてのファイルを含むリストを生成します。
C# ASP.NET Visual Web Developer 2008 Express
web.configフォルダーのファイルでこのオプションを探していると思います:
web.config
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <directoryBrowse enabled="false" /> </system.webServer> </configuration>
IIS 7 マネージャーでは、これは [ディレクトリの参照] オプションの下にあります。