I want to validate existence of Email Id in database using [Remote] data Annotation in Model. But when I call a remote JsonResult Action method the parameter will be null an
The name of your property is Email. Change the signature of your action method to match
Email
public JsonResult IsEmailIdExists(string Email) { .....