Hi @Filippo ,
First, by default, if you are using the Submit Form method to call this handler method, it will wait for the async method execute, and then if you are using BindProperty and tag helper to bind the property, it will update the data in current page.
Besides, you can change the handler method and return the updated data, then try to use JQuery Ajax to call the handler method, then return the data to the view page and update the page. Refer to the following code:
.cshtml:
.cshtml.cs:
In the Program.cs file, configure the Antiforgery token.
builder.Services.AddAntiforgery(o => o.HeaderName = "XSRF-TOKEN");
Then, the result as below:
In the Handler method, if you want to store the data, you can try to use session or database.
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
Best regards,
Dillion