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.
我已经建立了一个小的asp网站。我已经使用 Filezilla 在互联网上上传内容。但是当我访问该网站时,它会为我提供“索引”和我的网页 aspx 和 aspx.cs 页面的列表。所以当我点击任何它时,它会显示代码而不是页面。这是我第一次这样做,所以请原谅和愚蠢的错误。
谢谢
在包含这些文件的目录中有一个 index.aspx 页面作为您的主页。这将阻止目录列表。
在您的 web.config 中,添加以下内容
<defaultDocument> <files> <add value="Index.aspx" /> </files> </defaultDocument>