Blazor SSR TempData Example

This is a static SSR Blazor page. Common form handling in SSR generally follows the post-redirect-get pattern.

Without TempData, developers often use mechanisms such as query parameters and flash cookies, which are unsuitable or cumbersome in some situations.

This example uses BlazorSsrRedirectManager and TempDataAccessor to make persistence and retrieval easy with minimal code. There is also a StatusMessageDisplay helper component.

View the simple template/source code on GitHub: https://github.com/mq-gh-dev/blazor-ssr-tempdata