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 速成版
我认为您正在该文件夹的文件中寻找此选项web.config:
web.config
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <directoryBrowse enabled="false" /> </system.webServer> </configuration>
通过 IIS 7 管理器,这是在“目录浏览”选项下。