gpt4 book ai didi

asp.net - 为 ASP.NET (Visual Studio) 服务器配置设置默认页面

转载 作者:行者123 更新时间:2023-12-03 10:07:25 25 4
gpt4 key购买 nike

当我构建并运行我的应用程序时,我在浏览器中得到一个目录列表( 也发生在子文件夹 ),我必须单击 Index.aspx。它让我发疯。

视觉工作室 2008
ASP.NET 开发服务器 9.0.0.0

最佳答案

The built-in webserver is hardwired to use Default.aspx as the default page.



项目必须至少有一个空 Default.aspx文件来克服 Global.asax 的目录列表问题.

:)

添加该空文件后,所有请求都可以在一个位置处理。
public class Global : System.Web.HttpApplication
{
protected void Application_BeginRequest(object sender, EventArgs e)
{
this.Response.Write("hi@ " + this.Request.Path + "?" + this.Request.QueryString);
this.Response.StatusCode = 200;
this.Response.ContentType = "text/plain";

this.Response.End();
}
}

关于asp.net - 为 ASP.NET (Visual Studio) 服务器配置设置默认页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1125280/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com