https://anuraj.dev/blog/page-remote-validation-aspnetcore-identity/ #1
Replies: 1 comment 1 reply
-
Hi Anuraj, "To do this open the IdentityHostingStartup.cs file under the Areas/Identity folder." I don't have a IdentityHostingStartup.cs file in my project. Shall I add this file? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
https://anuraj.dev/blog/page-remote-validation-aspnetcore-identity/
This article will discuss about implementing Page Remote validation in ASP.NET Core Identity. ASP.NET Core Identity is a membership system that adds login functionality to ASP.NET Core apps. As you might know, in ASP.NET Core when you’re using ASP.NET Core Identity - it is coming as a Razor Class Library. One of the issue is if a user is trying to register with an already existing email address - he or she need to complete the form and submit to view the validation error message. This is not a good experience for the user. In ASP.NET Core MVC there is an attribute - Remote - available to run validation in such scenarios. In Razor Page remote validation attribute is not available. Instead there a Page Remote attribute. In this article you will learn how to implement Page Remote attribute for an ASP.NET Core identity project.
https://anuraj.dev/blog/page-remote-validation-aspnetcore-identity/
Beta Was this translation helpful? Give feedback.
All reactions