Blazor In Action Blazor in Action is now available on MEAP 12 October 2020 I've been working really hard over the past few months on Blazor in Action and I'm pleased to announce that the book is now available via Manning's Early Access Program (MEAP).
Blazor Building a simple tooltip component for Blazor in under 10 lines of code* 6 October 2020 In this post I show how you can create a simple, reusable, tooltip component for your Blazor applications. All in less than 10 lines of Razor code!
Forms Creating a Custom Validation Message Component for Blazor Forms 30 June 2020 In this post, I show a limitation with the built-in ValidationMessage component, the inability to customise it's output. I then show two solutions to resolve this problem.
Blazor Avoiding AccessTokenNotAvailableException when using the Blazor WebAssembly Hosted template with individual user accounts 9 June 2020 In this post, I'm going to show you how to configure an additional HttpClient instance which can be used by unauthenticated users to call unprotected endpoints, avoiding an AccessTokenNotAvailableException.
Blazor Auto Saving Form Data in Blazor 5 May 2020 In this post, I show you how I designed a new form component which saves and retrieves form data to and from local storage automatically - until the form is successfully submitted.
Blazor Working with Query Strings in Blazor 25 March 2020 In this post, I talk about query strings in Blazor. We start by understanding what they are and why we would chose to use them. Then look at some way to achieve that in Blazor.