Skip to content

Commit 7fc1b8e

Browse files
authored
Validation article updates (#37023)
1 parent 8ff2f3e commit 7fc1b8e

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

aspnetcore/mvc/models/validation.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn about model validation in ASP.NET Core MVC and Razor Pages.
55
monikerRange: '>= aspnetcore-3.1'
66
ms.author: tdykstra
77
ms.custom: mvc
8-
ms.date: 08/28/2025
8+
ms.date: 04/28/2026
99
uid: mvc/models/validation
1010
---
1111
# Model validation in ASP.NET Core MVC and Razor Pages
@@ -153,7 +153,10 @@ To implement remote validation:
153153

154154
:::code language="csharp" source="~/mvc/models/validation/samples/6.x/ValidationSample/Models/User.cs" id="snippet_Email":::
155155

156-
[Server side validation](#custom-validation) also needs to be implemented for clients that have disabled JavaScript.
156+
Remote validation:
157+
158+
* Doesn't perform server-side validation after the form is submitted.
159+
* Doesn't perform client-side checks if the client has disabled JavaScript. If the client-side validation check is required for form processing on the server, always implement separate server-side validation.
157160

158161
### Additional fields
159162

@@ -429,6 +432,7 @@ The preceding approach won't prevent client-side validation of ASP.NET Core Iden
429432

430433
* <xref:System.ComponentModel.DataAnnotations?displayProperty=fullName>
431434
* [Model Binding](xref:mvc/models/model-binding)
435+
* <xref:blazor/forms/index>
432436

433437
:::moniker-end
434438

0 commit comments

Comments
 (0)