I have been experimenting with the RemoteAttribute, however came across an issue. I have implemented an action method which handles the validation of an email string, however would like to have this method cater for more than 1 field.
For instance I have the following using the same method
[Remote("IsValidEmail", "Validation")]
public string EmailAddress { get; set; }
[Remote("IsValidEmail", "Validation")]
public string EmailAddressConfirm { get; set; }
Then I have the following function
public JsonResult IsValidEmail(string emailAddress)
{
string value = email;
//check email format
string strPattern = "^([0-9a-zA-Z]([-.\\w]*[0-9a-zA-Z])*@([0-9a-zA-Z][-\\w]*[0-9a-zA-Z]\\.)+[a-zA-Z]{2,9})$";
if (!System.Text.RegularExpressions.Regex.IsMatch(value, strPattern))
return Json(Keys.Register_SaisieMailValidErr.Translate(), JsonRequestBehavior.AllowGet);
return Json(true, JsonRequestBehavior.AllowGet);
Since the field names are different, how can I retrieve the value of both when doing the appropriate validation. The issue is, that the name of the argument must match the field attribute, however in that case I cannot use the same function since the field attributes have different names.
Does anyone have an idea how to go around this please?
Thanks