In the last chapter, we implemented some search logic to find specific videos. We also created a detail page to display the video details after a user clicks a specific video. A logical next step for our application is to be able to modify the data we display.
The logical place to do this would be from the Video List page. Here, the user can click a specific video in the list to view more details about that video or to edit the details of that video. Let’s have a look at how to do that in the next sections.
Editing Existing Data and Using Tag Helpers
Having a look at the markup on ...