protected void cuvTelNo_ServerValidate(object source, ServerValidateEventArgs args) { if (Page.IsValid) // other client-side validation passed { Tutor objTutor = new Tutor(); if (objTutor.isTelNoExist(txtTelNo.Text) == true) args.IsValid = false; // Raise error else args.IsValid = true; // No error } }