在Web浏览器中显示错误消息

时间:2015-05-16 18:10:00

标签: asp.net asp.net-mvc asp.net-core asp.net-core-mvc visual-studio-code

我们如何在Visual Studio Code中使用DNX(1.0.0-beta4-11566)运行的ASP.NET 5 MVC应用程序中显示错误?目前,我只是在网络浏览器上收到白屏。

1 个答案:

答案 0 :(得分:3)

最小答案

project.json中,将以下内容添加到dependencies部分。

"Microsoft.AspNet.Diagnostics": "1.0.0-beta4"

Startup.cs中添加以下using语句。

using Microsoft.AspNet.Diagnostics;

然后使用此更新Startup.Configure方法。

public void Configure(IApplicationBuilder app)
{
    // other code omitted
    app.UseErrorPage(ErrorPageOptions.ShowAll);
}

据我所知,这是添加如下所示的错误消息所需的最低配置:

Server Side Error Message