Asp.Net MVC provides an internal remote validation by tagging Remote attribute to respective field in your model . When I tag any field with Remote it generates some extra attributes to support Remote validation .
data-val-remote="EmailID is invalid." data-val-remote-additionalfields="*.EmailID" data-val-remote-url="/Home/TestEmailID"/
How can I achieve the same thing using Fluent Validation ? I searched a lot in google and found one article which says to create a custom remote validator as described in below link but It's a bit difficult for me to understand as I am new to fluent validation .
http://nripendra-newa.blogspot.com/2011/05/fluent-validation-remote-validation.html
If anyone can guide me how to to create this custom remote validator along with JQuery adapter to trigger this I will be really thankful .