Razor page - How to popup modal on valid submit?

Cenk 1,036 Reputation points
2022-07-08T11:40:20.433+00:00

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
{count} votes

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.