Hi, I want to validate 2 textboxes on a web form to make sure neither of them are blank, i.e. both can be filled or either but neither can be empty. I have created a custom validator and entered the below code behind it:

Protected Sub cvVillageTown_S erverValidate(B yVal source As Object, ByVal args As System.Web.UI.W ebControls.Serv erValidateEvent Args) Handles cvVillageTown.S erverValidate
If tbVillage.Text = ""...