diff --git a/aspnetcore/blazor/components/quickgrid.md b/aspnetcore/blazor/components/quickgrid.md
index ab4c5049ba46..ec429a2e3df0 100644
--- a/aspnetcore/blazor/components/quickgrid.md
+++ b/aspnetcore/blazor/components/quickgrid.md
@@ -140,6 +140,90 @@ In the running app, page through the items using a rendered `Paginator` componen
QuickGrid renders additional empty rows to fill in the final page of data when used with a `Paginator` component. In .NET 9 or later, empty data cells (`
| `) are added to the empty rows. The empty rows are intended to facilitate rendering the QuickGrid with stable row height and styling across all pages.
+To save the page index and return the user to the same page of items from a details page, use the following API:
+
+* : Gets the current zero-based page index.
+* : Sets the current page index and notifies any associated `QuickGrid` components to fetch and render updated data.
+
+In the following example, the `Details` component receives the page index from the query string in the `Page` property and uses it to form a link back to the `QuickGrid` component's page at `/characters`.
+
+`Details.razor`:
+
+```razor
+@page "/details"
+
+
+ - Character ID for this detail record: @Id
+ - QuickGrid page index: @Page
+
+
+
+@code {
+ [SupplyParameterFromQuery]
+ private int Id { get; set; }
+
+ [SupplyParameterFromQuery]
+ private int Page { get; set; }
+}
+```
+
+The `Characters` component:
+
+* Pages the `QuickGrid` component by calling on component initialization, setting the page index with the value of `Page`.
+* Opens the preceding `Details` component with the current page index () in the query string.
+
+`Characters.razor`:
+
+```razor
+@page "/characters"
+@rendermode InteractiveServer
+@using Microsoft.AspNetCore.Components.QuickGrid
+
+
+
+
+
+
+ Details
+
+
+
+
+
+
+@code {
+ PaginationState pagination = new PaginationState { ItemsPerPage = 3 };
+
+ private record Character(int Id, string Name);
+
+ private IQueryable character = new[]
+ {
+ new Character(0, "Ellen Ripley"),
+ new Character(1, "Darth Vader"),
+ new Character(2, "Rick Deckard"),
+ new Character(3, "Sarah Connor"),
+ new Character(4, "Malcolm Reynolds"),
+ new Character(5, "Kara Thrace"),
+ new Character(6, "James Kirk"),
+ new Character(7, "Flash Gordon"),
+ new Character(8, "Max Rockatansky"),
+ new Character(9, "Katniss Everdeen"),
+ new Character(10, "Ellie Sattler"),
+ new Character(11, "Leela")
+ }.AsQueryable();
+
+ [SupplyParameterFromQuery]
+ private int Page { get; set; }
+
+ protected override async Task OnInitializedAsync()
+ {
+ await pagination.SetCurrentPageIndexAsync(Page);
+ }
+}
+```
+
## Apply row styles
Apply styles to rows using [CSS isolation](xref:blazor/components/css-isolation), which can include styling empty rows for `QuickGrid` components that [page data with a `Paginator` component](#page-items-with-a-paginator-component).