我获取网站文件列表
当我尝试在浏览器中查看 ASP.NET 网站时,我得到网站文件夹中文件的完整列表。可能是什么原因?是只有一个原因还是可能有很多原因?
when I try to view ASP.NET website in browser I get the full list of files in the website folder. What could be the reason?Is there only one reason or there might be a lot?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您没有为 Web 应用程序指定起始页,则可能会发生这种情况。
右键单击要用作默认页面的网页,然后选择“设置为起始页”,每当您从 Visual Studio 运行 Web 应用程序时,它将打开所选页面。
请参考以下内容:
在 Asp.net 中设置默认页面
设置 ASP.NET (Visual Studio) 服务器的默认页面配置
That could happen if you have not specified a start page for your web application.
Right click on the web page you want to use as the default page and choose "Set as Start Page" whenever you run the web application from Visual Studio, it will open the selected page.
Refer to the following:
Set Default Page in Asp.net
Setting the default page for ASP.NET (Visual Studio) server configuration
编辑:
如果您从 Visual Studio 中启动网站,则可以通过执行以下操作来设置默认页面:
来自 这个问题的答案
您需要在服务器(在 IIS 中)上指定默认页面是什么,并禁用站点的目录列表。
另请参阅:
设置默认页面和页面在 ISS/Web.config 中禁用目录浏览
EDIT:
If you are launching the site from within Visual Studio, you can set the default page by doing the following:
From this SO question answer
You need to specify on the server (in IIS) what the default page is, and disable directory listing for the site.
See also:
Setting the default page & disabling directory browsing in ISS / Web.config
它可能是答案中提到的任何其他情况,或者
如果未指定文件,IIS 默认情况下会在目录中查找这些文件以按给定顺序提供服务。
也许您还没有指定文件,并且打开了“目录列表”
It could be any of the other cases mentioned in the answers OR
IIS by default looks for these files in the directory to serve in the given order if no file is specified.
Perhaps you have not specified a file, and turned on "Directory Listing"