Top "Remote-validation" questions

Remote Validation is the ability to call a custom server-side validation method via the client-side.

MVC 5 Remote Validation

I need to validate an input field value from user before the form is submitted. I have created an action …

validation asp.net-mvc-5 data-annotations remote-validation
how to use multiple AdditionalFields in remote validation - asp.net mvc

I need to validate the duplicate of FirstName, LastName and Email Address combination using remote validation in my ASP.NET …

asp.net-mvc remote-validation
Remote Attribute Validation not firing in Asp.Net MVC

Here is my model code public class BlobAppModel { [Required(ErrorMessage="Please enter the name of the image")] [Remote("IsNameAvailable","Home",…

c# jquery asp.net-mvc-3 remote-validation
Multiple fields validation using Remote Validation

I have the following model: public class Customer { public string FirstName {get;set;} public string LastName {get; set;} [Remote("CardExisting", "…

c# asp.net-mvc asp.net-mvc-3 remote-validation
How to Remote validate email or check if email exists

I am trying to check if Email exists at registration so that there are no duplicate emails in the database. …

c# asp.net-mvc-4 email-validation asp.net-4.5 remote-validation
Forcing a revalidate on mvc3 unobtrusive remote validation

It's a classic login flow. The user can choose between 'new user' or 'existing user'. If the user is new, …

asp.net-mvc-3 unobtrusive-validation remote-validation
ASP.NET MVC RemoteAttribute validation not working - Action not being executed

I've been pulling my hair out trying to figure out why ValidationController actions are not being triggered. I have settings …

asp.net-mvc-4 jquery-validate unobtrusive-validation remote-validation
How to get unobtrusive jquery remote validator to perform async..?

In an MVC3 app, using jquery unobtrusive validation, and a view/model with a [Remote] validator: I am trying to …

jquery asp.net-mvc-3 jquery-validate unobtrusive-validation remote-validation