Search results
3 lip 2019 · You do not need to configure routing on your startup. Routing just works per razor page. What ever you put on @page is the routing path for that razor page e.g. Index.razor route to root path "/". @page "/" <h1>Index Page</h1> @code { //Code here..
In this article. Startup process and configuration. JavaScript initializers. Initialize Blazor when the document is ready. Chain to the Promise that results from a manual start. Show 6 more. This isn't the latest version of this article. For the current release, see the .NET 8 version of this article.
This article explains how to manage Blazor app request routing and how to use the NavLink component to create navigation links. Important. Code examples throughout this article show methods called on Navigation, which is an injected NavigationManager in classes and components.
Blazor's enhanced navigation and form handling avoid the need for a full-page reload and preserves more of the page state, so pages load faster, usually without losing the user's scroll position on the page.
9 lut 2024 · The Blazor startup process is automatic and asynchronous via the Blazor script (blazor.*.js), where the * placeholder is: server for a Blazor Server app; webassembly for a Blazor WebAssembly app:::moniker-end. For the location of the script, see xref:blazor/project-structure#location-of-the-blazor-script. To manually start Blazor:
27 sty 2024 · Efficiently configuring default routes is a key aspect of optimizing user navigation in a Blazor application. In this post, we'll explore the process of setting a default component route in Blazor, providing users with a seamless entry point to your ASP.NET Core applications.
To set a startup page in Blazor: Modify the App.razor file to specify the startup page using the OnInitializedAsync method or directly in the route configuration. Determine the startup page based on your application's requirements, such as user authentication status or other criteria.