-
Notifications
You must be signed in to change notification settings - Fork 10.5k
Closed
Labels
DocsThis issue tracks updating documentationThis issue tracks updating documentationarea-blazorIncludes: Blazor, Razor ComponentsIncludes: Blazor, Razor Componentsfeature-blazor-wasmThis issue is related to and / or impacts Blazor WebAssemblyThis issue is related to and / or impacts Blazor WebAssembly
Milestone
Description
Describe the bug
The client side blazor (wasm) component cannot match the route parameter with dot (.) when you open the link the first time, instead it will return 404 error. It worked when you navigate from other blazor components.
To Reproduce
Steps to reproduce the behavior:
- Using this version of ASP.NET Core 3.0.0-preview8.19405.7
- Run this blazor component
@page "/hellow/{Name}"
@Name
@code
{
[Parameter]
public string Name { get; set; }
}
- With these arguments '/hellow/hello.world'
- See error: 404
Expected behavior
the page containing name hello.world
Screenshots
If applicable, add screenshots to help explain your problem.
Metadata
Metadata
Assignees
Labels
DocsThis issue tracks updating documentationThis issue tracks updating documentationarea-blazorIncludes: Blazor, Razor ComponentsIncludes: Blazor, Razor Componentsfeature-blazor-wasmThis issue is related to and / or impacts Blazor WebAssemblyThis issue is related to and / or impacts Blazor WebAssembly