Radzen Blazor Components

https://razor.radzen.com/ Pricing https://www.radzen.com/pricing/ Plan Price Features Community Free One applicationAutomatic updatesCommunity support15 days trial of Radzen Professional Professional $599 Everything from Radzen CommunityUnlimited number of applicationsDeploy to IIS, FTP, Azure and zipScaffold databases to CRUD pagesCustomize the visual appearancePremium themesDedicated customer support with 24 hour response time Enterprise $1299 Everything from Radzen ProfessionalPriority customer support... » read more

Create Self Signed SSL Certificate

You can do this via openssl: Install openssl package (if you are using Windows, download binaries here). Generate private key: openssl genrsa 2048 > private.pem Generate the self signed certificate: openssl req -x509 -days 1000 -new -key private.pem -out public.pem If needed, create PFX: openssl pkcs12 -export -in public.pem -inkey private.pem -out mycert.pfx Note: Use Windows command prompt. Sources:... » read more

Blazor Page Lifecycle

Here’s the Blazor components lifecycle: All Page Load Events Sources: https://www.thinktecture.com/en/blazor/blazor-components-lifecycle-is-not-always-straightforward/

Blazor OnClick Events

Button: onclick Drop Down List: onchange Drop Down List: onchange Textbox: onchange, onblur Button: OnClick vs OnClickAsync Sources: https://www.meziantou.net/asp-net-core-blazor-components-lifecycle.htm