This code will help you to understand how to pass DateTime value as the route in Blazor.
Blazor provides support for passing the route parameter as DateTime format. This needs to be mentioned while defining the route parameter in the route as @page “/route/{parameter:datetime}” at the top of the .razor component file..
Refer to the following code sample.
index.razor
@page "/" <button @onclick="CurrentTime">Current Time</button> @code { public void CurrentTime() { NavManager.NavigateTo("/time/" + DateTime.Now); } }
Time.razor
@page "/time/{param:datetime}" <h3>Time</h3> <p>@Param</p> @code { [Parameter] public DateTime Param { get; set; } }
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Blazor provides support for passing the route parameter as DateTime format. This needs to be mentioned while defining the route parameter in the route as @page “/route/{parameter:datetime}” at the top of the .razor component file..
Refer to the following code sample.
index.razor
Time.razor
need an explanation for this answer? contact us directly to get an explanation for this answer