@page "/Error"
@using System.Diagnostics
Error
Ocurrió un error
Lo sentimos, hubo un problema procesando su solicitud.
@if (ShowRequestId)
{
Request ID: @RequestId
}
Volver al dashboard
@code {
[CascadingParameter] private HttpContext? HttpContext { get; set; }
private string? RequestId { get; set; }
private bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
protected override void OnInitialized() => RequestId = Activity.Current?.Id ?? HttpContext?.TraceIdentifier;
}