i have a question about how to redirect page to certain page like google.com
I've tried with below but it's not working...
@inject NavigationManager NavigationManager
void()
{
NavigationManager.NavigateTo("google.com");
}
but it moved to the link with ultimate uri. like localhost:3030/google.com
how could i move to a page like google.com in Blazor?
If you want to visit Google page with click of button, you can do it like this