Razor page - How to popup modal on valid submit?

Cenk
1,036
Reputation points
Hello there,
I wonder if there is a way to popup a modal saying "Your transaction was successful." before navigating to customers page?
private async Task OnValidSubmit()
{
if (this.customer != null)
{
await AddCustomerUseCase.ExecuteAsync(this.customer);
NavigationManager.NavigateTo("/customers");
}
}
Thanks in advance.
Developer technologies | .NET | Blazor
1,674 questions
Sign in to answer