Forms in Blazor
摘要
Forms in Blazor are essentially wrappers around your input elements. They can help structure your pages and components better, but the most important feature is data validation. This could be verifying email format, password length, or something more custom. In many ways the arrangement is very similar to razor views or razor pages, or many other similar technologies, but in server-side rendering approach, you will be using the data passed through the form without any traditional request or response to the server.