-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating
Hands-On Full-Stack Web Development with ASP.NET Core
By :
Having finished the product details and with routing now in place, let's use Angular's rich support for forms as you go on to implement ProductEditPageComponent.
Angular's team understands that most apps require some level of handling forms, including the following:
Angular provides two key alternatives when handling forms: Reactive-style and template-driven.
The former is generally preferred in the case of nontrivial and somewhat complicated forms, while the latter is usually preferred in simple and static forms.
While there are technical differences between the two, this chapter focuses on using template-driven forms.
First, let's implement the ProductEditPageComponent by adding...