Page_ClientValidate triggers validation for all validators on the form and as @gilly3 shows out you can also validate them all by looping the collection and calling ValidatorValidate(validator)
However if you want to validate just one particular validator then you need to call ValidatorValidate(validator) for just one item.
The validator argument needs to be a DOM object which can be tricky to get because the element ID might end up quite different than you specified in the mark up if you are using master pages or user controls.
e.g.
<asp:RequiredFieldValidator ID="rfvCampaignStartDate" runat="server" .../>
becomes
<span id="cph_0_rfvCampaignFile" ...>
I got around this in one of my projects by using a jQuery selector like this
ValidatorValidate($('[id$="rfvCampaignFile"]').get(0));
ASP.NET only prefixes the IDs to create a unique name I could use id$= part of the selector to match any IDs ending in "rfvCampaignFile" since I wrote the website I know it won't clash with other controls. Finally I use .get(0) to return the DOM object reference to the first (and only in my case) DOM object matched.