If I create a static HTML page with a long list of clickable items, click one item to navigate to the item details page, and then press the mouse back button, the web browser goes back to the exact position where I was.
I wondered if this is possible when creating a Blazor 6.0 app that shows a list of item from Entity Framework Core 6.0. I tried the official sample form Microsoft, and as I worried, when I clicked the mouse back button, the list page was reloaded and shows the beginning.
Is it possible to keep the list state when navigating to item details page and coming back? I mean, it is the same list, so why reload it?