From 014c928a5e28624ab50a6395f96d1d492d103b52 Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Fri, 17 Apr 2026 07:53:28 -0500 Subject: [PATCH] Validation article updates Updated the date for the validation documentation and clarified the remote validation section. --- aspnetcore/mvc/models/validation.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/aspnetcore/mvc/models/validation.md b/aspnetcore/mvc/models/validation.md index ae89dcb5c74b..1d388b800c11 100644 --- a/aspnetcore/mvc/models/validation.md +++ b/aspnetcore/mvc/models/validation.md @@ -5,7 +5,7 @@ description: Learn about model validation in ASP.NET Core MVC and Razor Pages. monikerRange: '>= aspnetcore-3.1' ms.author: tdykstra ms.custom: mvc -ms.date: 08/28/2025 +ms.date: 04/17/2026 uid: mvc/models/validation --- # Model validation in ASP.NET Core MVC and Razor Pages @@ -153,7 +153,10 @@ To implement remote validation: :::code language="csharp" source="~/mvc/models/validation/samples/6.x/ValidationSample/Models/User.cs" id="snippet_Email"::: -[Server side validation](#custom-validation) also needs to be implemented for clients that have disabled JavaScript. +Remote validation: + +* Doesn't perform server-side validation after the form is submitted. +* 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. ### Additional fields @@ -429,6 +432,7 @@ The preceding approach won't prevent client-side validation of ASP.NET Core Iden * * [Model Binding](xref:mvc/models/model-binding) +* :::moniker-end