Is this possible to do this in Javascript and how?
function MyClick(){
ValidateTime(sender, args); // what is the right way to call it?
}
function ValidateTime(sender, args) { //sender and args;these arguments are from a validator control
}
I need for MyClick to call that ClientValidationFunction(ValidateTime)
.