Author

Sample Azure SQL Price

Plan DTUs ($1.50/DTU) Data Max Size Price Basic 5 2 GB $4.99/month Standard 10 250 GB $15.00/month Standard 20 250 GB $30.00/month Can adjust plan anytime. Service tiers in the DTU-based purchase model are differentiated by a range of compute sizes with a fixed amount of included storage, fixed retention period for backups, and fixed... » read more

3rd Party Blazor Components

https://jonhilton.net/blazor-component-libraries/ Radzen Blazor Components Site: https://razor.radzen.com/ Pricing: Free for commercial use Server: Yes WASM: Yes MatBlazor Site: https://www.matblazor.com/ Pricing: free Server: Yes WASM: Yes MatBlazor brings Material design to your Blazor projects. The list of components is pretty extensive, including all the standard form inputs you’d expect, plus grids, cards and lots more besides. You’ll also find... » read more

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/