Passing multiple parameters to a function through an Eval

rdorozinsky

New Member
I am tyring to pass two values to a function through an Eval.My function:\[code\]public static string ValidateSalary(int salaryFrom, int salaryTo){ string salary = string.Empty; if (salaryFrom == salaryTo) { salary = "
 
Back
Top