I made a quick change to my CG.Blazor.Forms library. It's a change I need for a project I'm building that makes good use of the dynamic form generation capabilities of…
Securing REST API's is something we all must learn to do. After all, releasing an API into the wild without some precautions is downright foolhardy. Still, I remember when I…
Most Blazor developers have learned how to validate a form. That code looks something like this: <EditForm Model="@MyModel"> <DataAnnotationsValidator /> <!-- enter the rest of the form here --> <button…
Last time I wrote about changes I recently made to my alert library. This time I'll demonstrate how to override a "standard" alert type. Let's start by defining a custom…
I recently reimagined my alert library. Here is a quick walkthrough of my new design. By the way, this library now builds upon the features of my event aggregator library.…