How are forms validations supported in Blazor?
Blazor supports form validations using data annotations.
How do you create a cookie in the client-side of Blazor?
You have to use JS Interop to create a cookie in Blazor. [Razor Page] [index.html] View Sample in GitHub
How do I debug a Blazor application client-side?
Run the Blazor application in Debug mode in Chrome 70 and above. With the focus of the Blazor application in the Chrome browser, run the following Shift+Alt+D on Windows/Linux Shift+Cmd+D on macOS Refer to Debug Blazor applications for more information.
Issue—CSS Lint warning in site.css Blazor.
This known bug is fixed in the latest Visual Studio release. Refer to the thread CSS lint warnings in site.css of Blazor.
How do you validate Blazor forms inside the bootstrap modal?
You have to use the EditContext with EditForm to validate the forms inside a bootstrap modal.