Hi all,
So I'm progressing in my web dev learning. Now I'm working on a project that is not from a tutorial, but on my own.
I have on my clientList page a click event handler method that takes me to the editClient page, and I have to pass an Id to it, and I can't figure how.
My method looks like this by now (Navigator is an injected NavigationManager).
Thanks
Pablo
So I'm progressing in my web dev learning. Now I'm working on a project that is not from a tutorial, but on my own.
I have on my clientList page a click event handler method that takes me to the editClient page, and I have to pass an Id to it, and I can't figure how.
My method looks like this by now (Navigator is an injected NavigationManager).
C#:
private void UpdateClient()
{
Navigator.NavigateTo("AddEditClient");
}
Pablo