From d486b1fd4ae5c8d74971b04eaae4c542a52218f9 Mon Sep 17 00:00:00 2001 From: Mark Harwood <47503138+markharwood101@users.noreply.github.com> Date: Thu, 17 Apr 2025 15:20:44 +0100 Subject: [PATCH] Update index.md Fixed spelling mistake Changed handing to handling --- aspnetcore/blazor/forms/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/blazor/forms/index.md b/aspnetcore/blazor/forms/index.md index 87ebba5cb8ba..590b7517ef03 100644 --- a/aspnetcore/blazor/forms/index.md +++ b/aspnetcore/blazor/forms/index.md @@ -368,7 +368,7 @@ To disable enhanced form handling: * For an , remove the parameter from the form element (or set it to `false`: `Enhance="false"`). * For an HTML `
`, remove the `data-enhance` attribute from form element (or set it to `false`: `data-enhance="false"`). -Blazor's enhanced navigation and form handing may undo dynamic changes to the DOM if the updated content isn't part of the server rendering. To preserve the content of an element, use the `data-permanent` attribute. +Blazor's enhanced navigation and form handling may undo dynamic changes to the DOM if the updated content isn't part of the server rendering. To preserve the content of an element, use the `data-permanent` attribute. In the following example, the content of the `
` element is updated dynamically by a script when the page loads: