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

Blazor Server Side vs Client Side Debugging

Server Side Debugging Breakpoints can be reached from within Visual Studio. Client Side Debugging Breakpoints can not be reached within Visual Studio. Need to setup Breakpoints from within browser debugger. (Shift + Alt + D) Note: For Client Side Debugging, you may need to run browser in debugger mode using command line. You will see... » read more