This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
@using Microsoft.AspNetCore.Diagnostics
@{
Layout = null;
var error = ViewContext.HttpContext.Features.Get<IExceptionHandlerFeature>()?.Error;
var title = error == null ? "404" : "500";
var message = error == null ? "无法找到该页面" : "服务器处理请求时发生错误";