Search⌘ K
AI Features

Completing the Tasks

Explore how to implement task completion functionality in a Blazor WebAssembly task manager. Learn to update the UI and persist task status changes to the SQL Server database by integrating ASP.NET Web API and handling user interactions with C#.

We'll cover the following...

We will allow the user to mark a task as complete by clicking the checkbox next to the name of the task. We do this as follows:

  1. Return to Visual Studio.
  2. Right-click the Pages folder and select the “Add, New Item” option from the menu.
  3. Enter “CSS” in the “Search” box.
  4. Select “Style Sheet”.
  5. Name the file Index.razor.css.
  6. Click the
...