<script type="text/javascript">
    function clientValidation(sender, arguments)
    {
        if (arguments.value == "hello world")
            arguments.isvalid = true;
        else
            arguments.isvalid = false;

        alert(arguments.isvalid);
    }
</script>

<asp:Label ID="lblName" runat="server" Text="Enter Your Name" />
<asp:TextBox ID="txtbxName" runat="server" />
<asp:CustomValidator ID="CustomValidator1" runat="server" ErrorMessage="You are Not allowed" Display="None" ClientValidationFunction="clientValidation" ValidationGroup="ValidationSummary1" />
<br />
<asp:Label ID="lblClass" runat="server" Text="Class" />
<asp:TextBox ID="txtClass" runat="server" />
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ErrorMessage="Please enter Clas" ControlToValidate="txtClass" Display="None" ValidationGroup="ValidationSummary1" />
<br />            
<asp:ValidationSummary ValidationGroup="ValidationSummary1" ID="ValidationSummary1" runat="server" />
<br />
<asp:Button ID="Button1" runat="server" Text="Validate" ValidationGroup="ValidationSummary1" />
link|improve this question

76% accept rate
Please ask a question, not just post code – El Ronnoco Jan 29 '11 at 14:56
@ El Ronnoco : In the above code there is always value false in alert box why so? – Jagdeep Jan 29 '11 at 14:59
what is it not doing? – Victor Jan 29 '11 at 15:01
@Victo: That is what i am not understanding – Jagdeep Jan 29 '11 at 15:16
try arguments.Value instead of arguments.value. Javascript is case-sensitive. – El Ronnoco Jan 29 '11 at 15:23
feedback

1 Answer

up vote 2 down vote accepted

Try this,

function clientValidation(sender, arguments)
{
  if (arguments.Value == "hello world")
     arguments.IsValid = true;
  else
     arguments.IsValid = false;
}

EDIT: Set ControlToValidate property.

<asp:CustomValidator ID="CustomValidator1" runat="server" 
         ErrorMessage="You are Not allowed" 
         ClientValidationFunction="clientValidation" 
         ValidationGroup="ValidationSummary1" 
         ControlToValidate="txtbxName">
</asp:CustomValidator>
link|improve this answer
Thanks for answer; Tried the code but still there is error. Thanks in advance – Jagdeep Jan 29 '11 at 15:06
It works but why does this not work if i dont use controltovalidate? – Jagdeep Jan 29 '11 at 15:27
@jagdeep, because the CustomValidator needs something to validate. ControlToValidate does just what it says, it validates a control that you specify. – brenjt Sep 6 '11 at 18:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.